bootstrap2_form_builder 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +101 -0
  3. data/Rakefile +38 -0
  4. data/lib/bootstrap2_form_builder.rb +47 -0
  5. data/lib/bootstrap2_form_builder/form_builder.rb +53 -0
  6. data/lib/bootstrap2_form_builder/version.rb +3 -0
  7. data/lib/generators/bootstrap2_form_builder/install_generator.rb +23 -0
  8. data/lib/generators/templates/bootstrap2_form_builder/_error_messages.html.erb +16 -0
  9. data/lib/generators/templates/bootstrap2_form_builder/_error_messages.html.haml +9 -0
  10. data/lib/generators/templates/bootstrap2_form_builder/initializer.rb +8 -0
  11. data/lib/tasks/bootstrap2_form_builder_tasks.rake +4 -0
  12. data/test/bootstrap2_form_builder_test.rb +7 -0
  13. data/test/dummy/README.rdoc +261 -0
  14. data/test/dummy/Rakefile +7 -0
  15. data/test/dummy/app/assets/javascripts/application.js +15 -0
  16. data/test/dummy/app/assets/javascripts/persons.js +2 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  18. data/test/dummy/app/assets/stylesheets/persons.css +4 -0
  19. data/test/dummy/app/controllers/application_controller.rb +3 -0
  20. data/test/dummy/app/controllers/people_controller.rb +5 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/helpers/persons_helper.rb +2 -0
  23. data/test/dummy/app/models/person.rb +5 -0
  24. data/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb +17 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/app/views/people/new.html.erb +5 -0
  27. data/test/dummy/config.ru +4 -0
  28. data/test/dummy/config/application.rb +56 -0
  29. data/test/dummy/config/boot.rb +10 -0
  30. data/test/dummy/config/database.yml +25 -0
  31. data/test/dummy/config/environment.rb +5 -0
  32. data/test/dummy/config/environments/development.rb +37 -0
  33. data/test/dummy/config/environments/production.rb +67 -0
  34. data/test/dummy/config/environments/test.rb +37 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/bootstrap2_form_builder.rb +8 -0
  37. data/test/dummy/config/initializers/inflections.rb +15 -0
  38. data/test/dummy/config/initializers/mime_types.rb +5 -0
  39. data/test/dummy/config/initializers/secret_token.rb +7 -0
  40. data/test/dummy/config/initializers/session_store.rb +8 -0
  41. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/test/dummy/config/locales/en.yml +5 -0
  43. data/test/dummy/config/routes.rb +59 -0
  44. data/test/dummy/db/development.sqlite3 +0 -0
  45. data/test/dummy/db/migrate/20120621034623_create_people.rb +11 -0
  46. data/test/dummy/db/production.sqlite3 +0 -0
  47. data/test/dummy/db/schema.rb +24 -0
  48. data/test/dummy/db/test.sqlite3 +0 -0
  49. data/test/dummy/log/development.log +4011 -0
  50. data/test/dummy/public/404.html +26 -0
  51. data/test/dummy/public/422.html +26 -0
  52. data/test/dummy/public/500.html +25 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/script/rails +6 -0
  55. data/test/dummy/test/fixtures/people.yml +11 -0
  56. data/test/dummy/test/functional/people_controller_test.rb +7 -0
  57. data/test/dummy/test/unit/helpers/persons_helper_test.rb +4 -0
  58. data/test/dummy/test/unit/person_test.rb +7 -0
  59. data/test/dummy/tmp/cache/assets/CA5/220/sprockets%2F2b6982ac4f57251707f935056aa20cb1 +0 -0
  60. data/test/dummy/tmp/cache/assets/CD0/070/sprockets%2F85bb3d81b4556da08f2720428b2e4b02 +0 -0
  61. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  62. data/test/dummy/tmp/cache/assets/CE8/390/sprockets%2Ffe578741336fbaf17729b0956ca2a492 +0 -0
  63. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  64. data/test/dummy/tmp/cache/assets/D3E/7B0/sprockets%2Fd5e7fb249bfa49a9a1f388521361ba15 +0 -0
  65. data/test/dummy/tmp/cache/assets/D41/260/sprockets%2F4fbc286386128fa34ca4db60e7c3b929 +0 -0
  66. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  67. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  68. data/test/dummy/tmp/cache/assets/D65/9B0/sprockets%2F01fd6d1a55ad7a36be914855230eb9cc +0 -0
  69. data/test/dummy/tmp/cache/assets/D71/F80/sprockets%2F39fda047409a7829628ac1bfacc84fb3 +0 -0
  70. data/test/dummy/tmp/cache/assets/D81/F80/sprockets%2F2101e0aceec57a888ca501df6c20c0b2 +0 -0
  71. data/test/dummy/tmp/cache/assets/D89/050/sprockets%2F92e977fde8b7f06753cc9234ffc70c7c +0 -0
  72. data/test/dummy/tmp/cache/assets/DA9/140/sprockets%2F73dc01c8c6ecec43d92469f4ce6c44c8 +0 -0
  73. data/test/dummy/tmp/cache/assets/DB2/1D0/sprockets%2F6dc7948fb85e97ea86dab36f700b18fa +0 -0
  74. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  75. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  76. data/test/dummy/tmp/cache/assets/E3F/300/sprockets%2F6a9aefa66fb02368e6faf8e5a5d5edd9 +0 -0
  77. data/test/dummy/tmp/pids/server.pid +1 -0
  78. data/test/dummy/true +2 -0
  79. data/test/test_helper.rb +10 -0
  80. metadata +210 -0
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,59 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :people
3
+ # The priority is based upon order of creation:
4
+ # first created -> highest priority.
5
+
6
+ # Sample of regular route:
7
+ # match 'products/:id' => 'catalog#view'
8
+ # Keep in mind you can assign values other than :controller and :action
9
+
10
+ # Sample of named route:
11
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
12
+ # This route can be invoked with purchase_url(:id => product.id)
13
+
14
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Sample resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Sample resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Sample resource route with more complex sub-resources
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', :on => :collection
40
+ # end
41
+ # end
42
+
43
+ # Sample resource route within a namespace:
44
+ # namespace :admin do
45
+ # # Directs /admin/products/* to Admin::ProductsController
46
+ # # (app/controllers/admin/products_controller.rb)
47
+ # resources :products
48
+ # end
49
+
50
+ # You can have the root of your site routed with "root"
51
+ # just remember to delete public/index.html.
52
+ # root :to => 'welcome#index'
53
+
54
+ # See how all your routes lay out with "rake routes"
55
+
56
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
57
+ # Note: This route will make all actions in every controller accessible via GET requests.
58
+ # match ':controller(/:action(/:id))(.:format)'
59
+ end
@@ -0,0 +1,11 @@
1
+ class CreatePeople < ActiveRecord::Migration
2
+ def change
3
+ create_table :people do |t|
4
+ t.string :name
5
+ t.string :email
6
+ t.string :website
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
File without changes
@@ -0,0 +1,24 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120621034623) do
15
+
16
+ create_table "people", :force => true do |t|
17
+ t.string "name"
18
+ t.string "email"
19
+ t.string "website"
20
+ t.datetime "created_at", :null => false
21
+ t.datetime "updated_at", :null => false
22
+ end
23
+
24
+ end
File without changes
@@ -0,0 +1,4011 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+  (0.0ms) select sqlite_version(*)
4
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (0.0ms) PRAGMA index_list("schema_migrations")
6
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
+ Migrating to CreatePeople (20120621034623)
9
+  (0.0ms) begin transaction
10
+  (1.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "website" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
11
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120621034623')
12
+  (4.0ms) commit transaction
13
+  (0.0ms) select sqlite_version(*)
14
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
+  (0.0ms) PRAGMA index_list("people")
16
+
17
+
18
+ Started GET "/" for 127.0.0.1 at 2012-06-20 23:52:11 -0400
19
+ Connecting to database specified by database.yml
20
+
21
+ ActionController::RoutingError (No route matches [GET] "/"):
22
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
23
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
24
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
25
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
26
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
27
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
28
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
29
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
30
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
31
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
32
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
33
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
34
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
35
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
36
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
37
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
38
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
39
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
40
+
41
+
42
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.0ms)
43
+
44
+
45
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:52:17 -0400
46
+ Processing by PersonsController#new as HTML
47
+ Rendered persons/new.html.erb within layouts/application (35.0ms)
48
+ Completed 500 Internal Server Error in 132ms
49
+
50
+ ActionView::Template::Error (Missing partial shared/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
51
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
52
+ ):
53
+ 1: <%= bootstrap_form_for(@person) %>
54
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__219114975_38647452'
55
+
56
+
57
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
58
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
59
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
60
+
61
+
62
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:57:45 -0400
63
+ Connecting to database specified by database.yml
64
+ Processing by PersonsController#new as HTML
65
+ Rendered persons/new.html.erb within layouts/application (22.0ms)
66
+ Completed 500 Internal Server Error in 154ms
67
+
68
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
69
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
70
+ ):
71
+ 1: <%= bootstrap_form_for(@person) %>
72
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___434162616_39008808'
73
+
74
+
75
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
76
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
77
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
78
+
79
+
80
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:57:46 -0400
81
+ Processing by PersonsController#new as HTML
82
+ Rendered persons/new.html.erb within layouts/application (3.0ms)
83
+ Completed 500 Internal Server Error in 8ms
84
+
85
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
86
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
87
+ ):
88
+ 1: <%= bootstrap_form_for(@person) %>
89
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___434162616_39008808'
90
+
91
+
92
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
93
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
94
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
95
+
96
+
97
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:57:48 -0400
98
+ Processing by PersonsController#new as HTML
99
+ Rendered persons/new.html.erb within layouts/application (3.0ms)
100
+ Completed 500 Internal Server Error in 8ms
101
+
102
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
103
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
104
+ ):
105
+ 1: <%= bootstrap_form_for(@person) %>
106
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___434162616_39008808'
107
+
108
+
109
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
110
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
111
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.0ms)
112
+
113
+
114
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:59:18 -0400
115
+ Processing by PersonsController#new as HTML
116
+ Rendered persons/new.html.erb within layouts/application (3.0ms)
117
+ Completed 500 Internal Server Error in 8ms
118
+
119
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
120
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
121
+ ):
122
+ 1: <%= bootstrap_form_for(@person) %>
123
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___434162616_39008808'
124
+
125
+
126
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
127
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.0ms)
128
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (30.0ms)
129
+
130
+
131
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:59:20 -0400
132
+ Processing by PersonsController#new as HTML
133
+ Rendered persons/new.html.erb within layouts/application (3.0ms)
134
+ Completed 500 Internal Server Error in 8ms
135
+
136
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
137
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
138
+ ):
139
+ 1: <%= bootstrap_form_for(@person) %>
140
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___434162616_39008808'
141
+
142
+
143
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
144
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
145
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
146
+
147
+
148
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:59:38 -0400
149
+ Connecting to database specified by database.yml
150
+ Processing by PersonsController#new as HTML
151
+ Rendered persons/new.html.erb within layouts/application (14.0ms)
152
+ Completed 500 Internal Server Error in 144ms
153
+
154
+ ActionView::Template::Error (Missing partial Bootstrap2FormBuilder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
155
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
156
+ ):
157
+ 1: <%= bootstrap_form_for(@person) %>
158
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___382342598_38666940'
159
+
160
+
161
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
162
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
163
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
164
+
165
+
166
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:59:39 -0400
167
+ Processing by PersonsController#new as HTML
168
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
169
+ Completed 500 Internal Server Error in 7ms
170
+
171
+ ActionView::Template::Error (Missing partial Bootstrap2FormBuilder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
172
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
173
+ ):
174
+ 1: <%= bootstrap_form_for(@person) %>
175
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___382342598_38666940'
176
+
177
+
178
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
179
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
180
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
181
+
182
+
183
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-20 23:59:41 -0400
184
+ Processing by PersonsController#new as HTML
185
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
186
+ Completed 500 Internal Server Error in 7ms
187
+
188
+ ActionView::Template::Error (Missing partial Bootstrap2FormBuilder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
189
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
190
+ ):
191
+ 1: <%= bootstrap_form_for(@person) %>
192
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___382342598_38666940'
193
+
194
+
195
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
196
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
197
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
198
+
199
+
200
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 00:00:31 -0400
201
+ Connecting to database specified by database.yml
202
+ Processing by PersonsController#new as HTML
203
+ Rendered persons/new.html.erb within layouts/application (15.0ms)
204
+ Completed 500 Internal Server Error in 148ms
205
+
206
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
207
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
208
+ ):
209
+ 1: <%= bootstrap_form_for(@person) %>
210
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___783970230_38774868'
211
+
212
+
213
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
214
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
215
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
216
+
217
+
218
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 00:00:39 -0400
219
+ Processing by PersonsController#new as HTML
220
+ Rendered persons/new.html.erb within layouts/application (3.0ms)
221
+ Completed 500 Internal Server Error in 7ms
222
+
223
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
224
+ * "c:/users/zachary/my documents/github/bootstrap2_form_builder/test/dummy/app/views"
225
+ ):
226
+ 1: <%= bootstrap_form_for(@person) %>
227
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___783970230_38774868'
228
+
229
+
230
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
231
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
232
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
233
+
234
+
235
+ Started GET "/" for 127.0.0.1 at 2012-06-21 19:31:44 -0400
236
+ Connecting to database specified by database.yml
237
+
238
+ ActionController::RoutingError (No route matches [GET] "/"):
239
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
240
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
241
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
242
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
243
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
244
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
245
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
246
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
247
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
248
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
249
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
250
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
251
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
252
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
253
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
254
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
255
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
256
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
257
+
258
+
259
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
260
+
261
+
262
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 19:31:47 -0400
263
+
264
+ ActionController::RoutingError (No route matches [GET] "/people/new"):
265
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
266
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
267
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
268
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
269
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
270
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
271
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
272
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
273
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
274
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
275
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
276
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
277
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
278
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
279
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
280
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
281
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
282
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
283
+
284
+
285
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
286
+
287
+
288
+ Started GET "/presons/new" for 127.0.0.1 at 2012-06-21 19:31:51 -0400
289
+
290
+ ActionController::RoutingError (No route matches [GET] "/presons/new"):
291
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
292
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
293
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
294
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
295
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
296
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
297
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
298
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
299
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
300
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
301
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
302
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
303
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
304
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
305
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
306
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
307
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
308
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
309
+
310
+
311
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
312
+
313
+
314
+ Started GET "/presons/new" for 127.0.0.1 at 2012-06-21 19:33:40 -0400
315
+
316
+ ActionController::RoutingError (No route matches [GET] "/presons/new"):
317
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
318
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
319
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
320
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
321
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
322
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
323
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
324
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
325
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
326
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
327
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
328
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
329
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
330
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
331
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
332
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
333
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
334
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
335
+
336
+
337
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
338
+
339
+
340
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:33:43 -0400
341
+ Processing by PersonsController#new as HTML
342
+ ERROR: compiling _app_views_persons_new_html_erb__611819621_35150904 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:5: syntax error, unexpected keyword_end
343
+ ');@output_buffer.append= ( end );@output_buffer.to_s
344
+ ^
345
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:6: syntax error, unexpected keyword_ensure, expecting ')'
346
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:8: syntax error, unexpected keyword_end, expecting ')'
347
+ Function body: def _app_views_persons_new_html_erb__611819621_35150904(local_assigns, output_buffer)
348
+ _old_virtual_path, @virtual_path = @virtual_path, "persons/new";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= bootstrap_form_for @person do |form| @output_buffer.safe_concat('
349
+ ');@output_buffer.safe_concat(' ');@output_buffer.append= ( form.text_field :name );@output_buffer.safe_concat('
350
+ ');@output_buffer.safe_concat(' ');@output_buffer.append= ( form.text_field :email );@output_buffer.safe_concat('
351
+ ');@output_buffer.safe_concat(' ');@output_buffer.append= ( form.text_field :website );@output_buffer.safe_concat('
352
+ ');@output_buffer.append= ( end );@output_buffer.to_s
353
+ ensure
354
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
355
+ end
356
+
357
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
358
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
359
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
360
+ <internal:prelude>:10:in `synchronize'
361
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
362
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
363
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
364
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
365
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
366
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
367
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
368
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
369
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
370
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
371
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
372
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
373
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
374
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
375
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
376
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
377
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
378
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
379
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
380
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
381
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
382
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
383
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
384
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
385
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
386
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
387
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
388
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
389
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
390
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
391
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
392
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
393
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
394
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
395
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
396
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
397
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__662601189__process_action__841305984__callbacks'
398
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
399
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
400
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
401
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
402
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
403
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
404
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
405
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
406
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
407
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
408
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
409
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
410
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
411
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
412
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
413
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
414
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
415
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
416
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
417
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
418
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
419
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
420
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
421
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
422
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
423
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
424
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
425
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
426
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
427
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
428
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
429
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
430
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
431
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
432
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
433
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
434
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__855736384__call__112337461__callbacks'
435
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
436
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
437
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
438
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
439
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
440
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
441
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
442
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
443
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
444
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
445
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
446
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
447
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
448
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
449
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
450
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
451
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
452
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
453
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
454
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
455
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
456
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
457
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
458
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
459
+ Rendered persons/new.html.erb within layouts/application (1.0ms)
460
+ Completed 500 Internal Server Error in 87ms
461
+
462
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:5: syntax error, unexpected keyword_end
463
+ ');@output_buffer.append= ( end );@output_buffer.to_s
464
+ ^
465
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:6: syntax error, unexpected keyword_ensure, expecting ')'
466
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:8: syntax error, unexpected keyword_end, expecting ')'):
467
+ 2: <%= form.text_field :name %>
468
+ 3: <%= form.text_field :email %>
469
+ 4: <%= form.text_field :website %>
470
+ 5: <%= end %>
471
+ actionpack (3.2.6) lib/action_view/template.rb:297:in `module_eval'
472
+ actionpack (3.2.6) lib/action_view/template.rb:297:in `compile'
473
+ actionpack (3.2.6) lib/action_view/template.rb:244:in `block in compile!'
474
+ <internal:prelude>:10:in `synchronize'
475
+ actionpack (3.2.6) lib/action_view/template.rb:232:in `compile!'
476
+ actionpack (3.2.6) lib/action_view/template.rb:144:in `block in render'
477
+ activesupport (3.2.6) lib/active_support/notifications.rb:125:in `instrument'
478
+ actionpack (3.2.6) lib/action_view/template.rb:143:in `render'
479
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
480
+ actionpack (3.2.6) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
481
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
482
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
483
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
484
+ actionpack (3.2.6) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
485
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
486
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
487
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
488
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:18:in `render'
489
+ actionpack (3.2.6) lib/action_view/renderer/renderer.rb:36:in `render_template'
490
+ actionpack (3.2.6) lib/action_view/renderer/renderer.rb:17:in `render'
491
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:110:in `_render_template'
492
+ actionpack (3.2.6) lib/action_controller/metal/streaming.rb:225:in `_render_template'
493
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:103:in `render_to_body'
494
+ actionpack (3.2.6) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
495
+ actionpack (3.2.6) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
496
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:88:in `render'
497
+ actionpack (3.2.6) lib/action_controller/metal/rendering.rb:16:in `render'
498
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
499
+ activesupport (3.2.6) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
500
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
501
+ activesupport (3.2.6) lib/active_support/core_ext/benchmark.rb:5:in `ms'
502
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
503
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
504
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
505
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:39:in `render'
506
+ actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
507
+ actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
508
+ actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
509
+ actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
510
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
511
+ activesupport (3.2.6) lib/active_support/callbacks.rb:414:in `_run__662601189__process_action__841305984__callbacks'
512
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
513
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
514
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
515
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
516
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
517
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
518
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
519
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
520
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
521
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
522
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
523
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
524
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
525
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
526
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
527
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
528
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
529
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
530
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
531
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
532
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
533
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
534
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
535
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
536
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
537
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
538
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
539
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
540
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
541
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
542
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
543
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
544
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
545
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
546
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
547
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
548
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__855736384__call__112337461__callbacks'
549
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
550
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
551
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
552
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
553
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
554
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
555
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
556
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
557
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
558
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
559
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
560
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
561
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
562
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
563
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
564
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
565
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
566
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
567
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
568
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
569
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
570
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
571
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
572
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
573
+
574
+
575
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
576
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
577
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
578
+
579
+
580
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:34:06 -0400
581
+ Processing by PersonsController#new as HTML
582
+ Rendered persons/new.html.erb within layouts/application (12.0ms)
583
+ Completed 500 Internal Server Error in 15ms
584
+
585
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
586
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
587
+ ):
588
+ 1: <%= bootstrap_form_for @person do |form| %>
589
+ 2: <%= form.text_field :name %>
590
+ 3: <%= form.text_field :email %>
591
+ 4: <%= form.text_field :website %>
592
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__611819621_38442420'
593
+
594
+
595
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
596
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
597
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
598
+
599
+
600
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:35:27 -0400
601
+ Connecting to database specified by database.yml
602
+ Processing by PersonsController#new as HTML
603
+ Rendered persons/new.html.erb within layouts/application (12.0ms)
604
+ Completed 500 Internal Server Error in 124ms
605
+
606
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
607
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
608
+ ):
609
+ 1: <%= bootstrap_form_for @person do |form| %>
610
+ 2: <%= form.text_field :name %>
611
+ 3: <%= form.text_field :email %>
612
+ 4: <%= form.text_field :website %>
613
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__808560031_37036668'
614
+
615
+
616
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
617
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
618
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.0ms)
619
+
620
+
621
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:35:34 -0400
622
+ Processing by PersonsController#new as HTML
623
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
624
+ Completed 500 Internal Server Error in 5ms
625
+
626
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
627
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
628
+ ):
629
+ 1: <%= bootstrap_form_for @person do |form| %>
630
+ 2: <%= form.text_field :name %>
631
+ 3: <%= form.text_field :email %>
632
+ 4: <%= form.text_field :website %>
633
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__808560031_37036668'
634
+
635
+
636
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
637
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
638
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
639
+
640
+
641
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:35:36 -0400
642
+ Processing by PersonsController#new as HTML
643
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
644
+ Completed 500 Internal Server Error in 5ms
645
+
646
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
647
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
648
+ ):
649
+ 1: <%= bootstrap_form_for @person do |form| %>
650
+ 2: <%= form.text_field :name %>
651
+ 3: <%= form.text_field :email %>
652
+ 4: <%= form.text_field :website %>
653
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__808560031_37036668'
654
+
655
+
656
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
657
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
658
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
659
+
660
+
661
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:37:57 -0400
662
+ Connecting to database specified by database.yml
663
+ Processing by PersonsController#new as HTML
664
+ Rendered persons/new.html.erb within layouts/application (12.0ms)
665
+ Completed 500 Internal Server Error in 123ms
666
+
667
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
668
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
669
+ ):
670
+ 1: <%= bootstrap_form_for @person do |form| %>
671
+ 2: <%= form.text_field :name %>
672
+ 3: <%= form.text_field :email %>
673
+ 4: <%= form.text_field :website %>
674
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__742946824_36961932'
675
+
676
+
677
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
678
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
679
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.3ms)
680
+
681
+
682
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:37:58 -0400
683
+ Processing by PersonsController#new as HTML
684
+ Rendered persons/new.html.erb within layouts/application (2.5ms)
685
+ Completed 500 Internal Server Error in 5ms
686
+
687
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
688
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
689
+ ):
690
+ 1: <%= bootstrap_form_for @person do |form| %>
691
+ 2: <%= form.text_field :name %>
692
+ 3: <%= form.text_field :email %>
693
+ 4: <%= form.text_field :website %>
694
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__742946824_36961932'
695
+
696
+
697
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
698
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
699
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
700
+
701
+
702
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:37:58 -0400
703
+ Processing by PersonsController#new as HTML
704
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
705
+ Completed 500 Internal Server Error in 5ms
706
+
707
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
708
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
709
+ ):
710
+ 1: <%= bootstrap_form_for @person do |form| %>
711
+ 2: <%= form.text_field :name %>
712
+ 3: <%= form.text_field :email %>
713
+ 4: <%= form.text_field :website %>
714
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__742946824_36961932'
715
+
716
+
717
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
718
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
719
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
720
+
721
+
722
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:38:00 -0400
723
+ Processing by PersonsController#new as HTML
724
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
725
+ Completed 500 Internal Server Error in 5ms
726
+
727
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
728
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
729
+ ):
730
+ 1: <%= bootstrap_form_for @person do |form| %>
731
+ 2: <%= form.text_field :name %>
732
+ 3: <%= form.text_field :email %>
733
+ 4: <%= form.text_field :website %>
734
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__742946824_36961932'
735
+
736
+
737
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
738
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
739
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
740
+
741
+
742
+ Started GET "/" for 127.0.0.1 at 2012-06-21 19:38:25 -0400
743
+
744
+ ActionController::RoutingError (No route matches [GET] "/"):
745
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
746
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
747
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
748
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
749
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
750
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
751
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
752
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
753
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
754
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
755
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
756
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
757
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
758
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
759
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
760
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
761
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
762
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
763
+
764
+
765
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
766
+
767
+
768
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:38:30 -0400
769
+ Processing by PersonsController#new as HTML
770
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
771
+ Completed 500 Internal Server Error in 5ms
772
+
773
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
774
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
775
+ ):
776
+ 1: <%= bootstrap_form_for @person do |form| %>
777
+ 2: <%= form.text_field :name %>
778
+ 3: <%= form.text_field :email %>
779
+ 4: <%= form.text_field :website %>
780
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__742946824_36961932'
781
+
782
+
783
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
784
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
785
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
786
+
787
+
788
+ Started GET "/" for 127.0.0.1 at 2012-06-21 19:39:49 -0400
789
+
790
+ ActionController::RoutingError (No route matches [GET] "/"):
791
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
792
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
793
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
794
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
795
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
796
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
797
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
798
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
799
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
800
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
801
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
802
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
803
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
804
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
805
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
806
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
807
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
808
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
809
+
810
+
811
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
812
+
813
+
814
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:39:52 -0400
815
+ Processing by PersonsController#new as HTML
816
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
817
+ Completed 500 Internal Server Error in 5ms
818
+
819
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
820
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
821
+ ):
822
+ 1: <%= bootstrap_form_for @person do |form| %>
823
+ 2: <%= form.text_field :name %>
824
+ 3: <%= form.text_field :email %>
825
+ 4: <%= form.text_field :website %>
826
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__742946824_36961932'
827
+
828
+
829
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
830
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
831
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
832
+
833
+
834
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:40:12 -0400
835
+ Connecting to database specified by database.yml
836
+ Processing by PersonsController#new as HTML
837
+ Rendered persons/new.html.erb within layouts/application (11.0ms)
838
+ Completed 500 Internal Server Error in 121ms
839
+
840
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
841
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
842
+ ):
843
+ 1: <%= bootstrap_form_for @person do |form| %>
844
+ 2: <%= form.text_field :name %>
845
+ 3: <%= form.text_field :email %>
846
+ 4: <%= form.text_field :website %>
847
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___192765199_38984868'
848
+
849
+
850
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
851
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
852
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.0ms)
853
+
854
+
855
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 19:40:23 -0400
856
+ Processing by PersonsController#new as HTML
857
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
858
+ Completed 500 Internal Server Error in 5ms
859
+
860
+ ActionView::Template::Error (Missing partial bootstrap2_form_builder/error_messages with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
861
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
862
+ ):
863
+ 1: <%= bootstrap_form_for @person do |form| %>
864
+ 2: <%= form.text_field :name %>
865
+ 3: <%= form.text_field :email %>
866
+ 4: <%= form.text_field :website %>
867
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___192765199_38984868'
868
+
869
+
870
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
871
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
872
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
873
+
874
+
875
+ Started GET "/" for 127.0.0.1 at 2012-06-21 22:22:13 -0400
876
+ Connecting to database specified by database.yml
877
+
878
+ ActionController::RoutingError (No route matches [GET] "/"):
879
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
880
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
881
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
882
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
883
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
884
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
885
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
886
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
887
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
888
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
889
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
890
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
891
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
892
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
893
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
894
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
895
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
896
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
897
+
898
+
899
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
900
+
901
+
902
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 22:22:15 -0400
903
+ Processing by PersonsController#new as HTML
904
+ Rendered persons/new.html.erb within layouts/application (1.0ms)
905
+ Completed 500 Internal Server Error in 86ms
906
+
907
+ ActionView::Template::Error (uninitialized class variable @@error_partial in Bootstrap2FormBuilder::BootstrapFormHelper):
908
+ 1: <%= bootstrap_form_for @person do |form| %>
909
+ 2: <%= form.text_field :name %>
910
+ 3: <%= form.text_field :email %>
911
+ 4: <%= form.text_field :website %>
912
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb__558273079_32445036'
913
+
914
+
915
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
916
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
917
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
918
+
919
+
920
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 22:23:23 -0400
921
+ Connecting to database specified by database.yml
922
+ Processing by PersonsController#new as HTML
923
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__161744011_32322624 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
924
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
925
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__161744011_32322624(local_assigns, output_buffer)
926
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
927
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
928
+ <a href="#">
929
+ *
930
+ </a>
931
+ <strong>
932
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
933
+ ');@output_buffer.safe_concat(' </strong>
934
+ <ul>
935
+ '); targer.errors.full_messages.each do |msg|
936
+ @output_buffer.safe_concat(' <li>
937
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
938
+ ');@output_buffer.safe_concat(' </li>
939
+ </ul>
940
+ </div>
941
+ '); end ;@output_buffer.to_s
942
+ ensure
943
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
944
+ end
945
+
946
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
947
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
948
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
949
+ <internal:prelude>:10:in `synchronize'
950
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
951
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
952
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
953
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
954
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
955
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
956
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
957
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
958
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
959
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
960
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
961
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
962
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
963
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
964
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
965
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:21:in `bootstrap_form_for'
966
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___815183386_37161336'
967
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
968
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
969
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
970
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
971
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
972
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
973
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
974
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
975
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
976
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
977
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
978
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
979
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
980
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
981
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
982
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
983
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
984
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
985
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
986
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
987
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
988
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
989
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
990
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
991
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
992
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
993
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
994
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
995
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
996
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
997
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
998
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
999
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
1000
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
1001
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1002
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__22031013__process_action__161531277__callbacks'
1003
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
1004
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1005
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
1006
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
1007
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
1008
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1009
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
1010
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1011
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
1012
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1013
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1014
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1015
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
1016
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
1017
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
1018
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1019
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
1020
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
1021
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1022
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
1023
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
1024
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
1025
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
1026
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
1027
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1028
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
1029
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
1030
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
1031
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1032
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
1033
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
1034
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
1035
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
1036
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
1037
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1038
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1039
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__347927412__call__657366756__callbacks'
1040
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
1041
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1042
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
1043
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1044
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
1045
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1046
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1047
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1048
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
1049
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
1050
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
1051
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
1052
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
1053
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1054
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
1055
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
1056
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
1057
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
1058
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
1059
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
1060
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
1061
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1062
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1063
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1064
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1065
+ Rendered persons/new.html.erb within layouts/application (12.0ms)
1066
+ Completed 500 Internal Server Error in 132ms
1067
+
1068
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
1069
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
1070
+ 14: </ul>
1071
+ 15: </div>
1072
+ 16: <% end %>
1073
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___815183386_37161336'
1074
+
1075
+
1076
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1077
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
1078
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
1079
+
1080
+
1081
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 22:23:26 -0400
1082
+ Processing by PersonsController#new as HTML
1083
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__161744011_32322624 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
1084
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
1085
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__161744011_32322624(local_assigns, output_buffer)
1086
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
1087
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
1088
+ <a href="#">
1089
+ *
1090
+ </a>
1091
+ <strong>
1092
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
1093
+ ');@output_buffer.safe_concat(' </strong>
1094
+ <ul>
1095
+ '); targer.errors.full_messages.each do |msg|
1096
+ @output_buffer.safe_concat(' <li>
1097
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
1098
+ ');@output_buffer.safe_concat(' </li>
1099
+ </ul>
1100
+ </div>
1101
+ '); end ;@output_buffer.to_s
1102
+ ensure
1103
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
1104
+ end
1105
+
1106
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
1107
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
1108
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
1109
+ <internal:prelude>:10:in `synchronize'
1110
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
1111
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
1112
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
1113
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
1114
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
1115
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
1116
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1117
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
1118
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1119
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
1120
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1121
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
1122
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
1123
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
1124
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
1125
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:21:in `bootstrap_form_for'
1126
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___815183386_37161336'
1127
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
1128
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
1129
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
1130
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1131
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1132
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
1133
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1134
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
1135
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1136
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1137
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1138
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1139
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
1140
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
1141
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
1142
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
1143
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
1144
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
1145
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1146
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1147
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
1148
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
1149
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1150
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1151
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1152
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
1153
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1154
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1155
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1156
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
1157
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1158
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1159
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
1160
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
1161
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1162
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__22031013__process_action__161531277__callbacks'
1163
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
1164
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1165
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
1166
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
1167
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
1168
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1169
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
1170
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1171
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
1172
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1173
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1174
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1175
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
1176
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
1177
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
1178
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1179
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
1180
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
1181
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1182
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
1183
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
1184
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
1185
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
1186
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
1187
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1188
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
1189
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
1190
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
1191
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1192
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
1193
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
1194
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
1195
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
1196
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
1197
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1198
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1199
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__347927412__call__657366756__callbacks'
1200
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
1201
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1202
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
1203
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1204
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
1205
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1206
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1207
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1208
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
1209
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
1210
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
1211
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
1212
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
1213
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1214
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
1215
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
1216
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
1217
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
1218
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
1219
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
1220
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
1221
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1222
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1223
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1224
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1225
+ Rendered persons/new.html.erb within layouts/application (2.0ms)
1226
+ Completed 500 Internal Server Error in 5ms
1227
+
1228
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
1229
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
1230
+ 14: </ul>
1231
+ 15: </div>
1232
+ 16: <% end %>
1233
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___815183386_37161336'
1234
+
1235
+
1236
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1237
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1238
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
1239
+
1240
+
1241
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-21 22:24:55 -0400
1242
+ Connecting to database specified by database.yml
1243
+ Processing by PersonsController#new as HTML
1244
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1245
+ Rendered persons/new.html.erb within layouts/application (16.0ms)
1246
+ Completed 500 Internal Server Error in 134ms
1247
+
1248
+ ActionView::Template::Error (undefined method `people_path' for #<#<Class:0x49aeed8>:0x4989570>):
1249
+ 1: <%= bootstrap_form_for @person do |form| %>
1250
+ 2: <%= form.text_field :name %>
1251
+ 3: <%= form.text_field :email %>
1252
+ 4: <%= form.text_field :website %>
1253
+ app/views/persons/new.html.erb:1:in `_app_views_persons_new_html_erb___499763082_31084680'
1254
+
1255
+
1256
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1257
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
1258
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.0ms)
1259
+
1260
+
1261
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:25:24 -0400
1262
+
1263
+ ActionController::RoutingError (uninitialized constant PeopleController):
1264
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1265
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `each'
1266
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `constantize'
1267
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1268
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1269
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:32:in `call'
1270
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1271
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1272
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1273
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1274
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1275
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1276
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1277
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1278
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1279
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1280
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1281
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1282
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1283
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1284
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1285
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1286
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__277300661__call__172070793__callbacks'
1287
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1288
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1289
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1290
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1291
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1292
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1293
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1294
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1295
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1296
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1297
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1298
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1299
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1300
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1301
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1302
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1303
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1304
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1305
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1306
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1307
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1308
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1309
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1310
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1311
+
1312
+
1313
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1314
+
1315
+
1316
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:25:25 -0400
1317
+
1318
+ ActionController::RoutingError (uninitialized constant PeopleController):
1319
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1320
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `each'
1321
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `constantize'
1322
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1323
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1324
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:32:in `call'
1325
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1326
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1327
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1328
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1329
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1330
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1331
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1332
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1333
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1334
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1335
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1336
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1337
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1338
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1339
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1340
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1341
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__277300661__call__172070793__callbacks'
1342
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1343
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1344
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1345
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1346
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1347
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1348
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1349
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1350
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1351
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1352
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1353
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1354
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1355
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1356
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1357
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1358
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1359
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1360
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1361
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1362
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1363
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1364
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1365
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1366
+
1367
+
1368
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1369
+
1370
+
1371
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:25:26 -0400
1372
+
1373
+ ActionController::RoutingError (uninitialized constant PeopleController):
1374
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1375
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `each'
1376
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `constantize'
1377
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1378
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1379
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:32:in `call'
1380
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1381
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1382
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1383
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1384
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1385
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1386
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1387
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1388
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1389
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1390
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1391
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1392
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1393
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1394
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1395
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1396
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__277300661__call__172070793__callbacks'
1397
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1398
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1399
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1400
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1401
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1402
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1403
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1404
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1405
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1406
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1407
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1408
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1409
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1410
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1411
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1412
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1413
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1414
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1415
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1416
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1417
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1418
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1419
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1420
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1421
+
1422
+
1423
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1424
+
1425
+
1426
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:26:08 -0400
1427
+
1428
+ LoadError (Expected c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/controllers/people_controller.rb to define PeopleController):
1429
+ activesupport (3.2.6) lib/active_support/dependencies.rb:503:in `load_missing_constant'
1430
+ activesupport (3.2.6) lib/active_support/dependencies.rb:192:in `block in const_missing'
1431
+ activesupport (3.2.6) lib/active_support/dependencies.rb:190:in `each'
1432
+ activesupport (3.2.6) lib/active_support/dependencies.rb:190:in `const_missing'
1433
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1434
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `each'
1435
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `constantize'
1436
+ activesupport (3.2.6) lib/active_support/dependencies.rb:554:in `get'
1437
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1438
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1439
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:32:in `call'
1440
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1441
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1442
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1443
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1444
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1445
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1446
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1447
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1448
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1449
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1450
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1451
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1452
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1453
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1454
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1455
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1456
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__277300661__call__172070793__callbacks'
1457
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1458
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1459
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1460
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1461
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1462
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1463
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1464
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1465
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1466
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1467
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1468
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1469
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1470
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1471
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1472
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1473
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1474
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1475
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1476
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1477
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1478
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1479
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1480
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1481
+
1482
+
1483
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1484
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
1485
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
1486
+
1487
+
1488
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:26:30 -0400
1489
+ Processing by PeopleController#new as HTML
1490
+ Completed 500 Internal Server Error in 8ms
1491
+
1492
+ ActionView::MissingTemplate (Missing template people/new, application/new with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
1493
+ * "c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views"
1494
+ ):
1495
+ actionpack (3.2.6) lib/action_view/path_set.rb:58:in `find'
1496
+ actionpack (3.2.6) lib/action_view/lookup_context.rb:109:in `find'
1497
+ c:in `find_template'
1498
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
1499
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:10:in `render'
1500
+ actionpack (3.2.6) lib/action_view/renderer/renderer.rb:36:in `render_template'
1501
+ actionpack (3.2.6) lib/action_view/renderer/renderer.rb:17:in `render'
1502
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:110:in `_render_template'
1503
+ actionpack (3.2.6) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1504
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1505
+ actionpack (3.2.6) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1506
+ actionpack (3.2.6) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1507
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:88:in `render'
1508
+ actionpack (3.2.6) lib/action_controller/metal/rendering.rb:16:in `render'
1509
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1510
+ activesupport (3.2.6) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1511
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1512
+ activesupport (3.2.6) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1513
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1514
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1515
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1516
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:39:in `render'
1517
+ actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1518
+ actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1519
+ actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
1520
+ actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
1521
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1522
+ activesupport (3.2.6) lib/active_support/callbacks.rb:414:in `_run__239907507__process_action__716909647__callbacks'
1523
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1524
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1525
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1526
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
1527
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1528
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1529
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1530
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1531
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1532
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1533
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1534
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1535
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
1536
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
1537
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
1538
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1539
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
1540
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
1541
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1542
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
1543
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1544
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1545
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1546
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1547
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1548
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1549
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1550
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1551
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1552
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1553
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1554
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1555
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1556
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1557
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1558
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1559
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__277300661__call__172070793__callbacks'
1560
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1561
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1562
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1563
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1564
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1565
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1566
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1567
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1568
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1569
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1570
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1571
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1572
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1573
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1574
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1575
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1576
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1577
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1578
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1579
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1580
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1581
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1582
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1583
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1584
+
1585
+
1586
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.0ms)
1587
+
1588
+
1589
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:26:42 -0400
1590
+ Processing by PeopleController#new as HTML
1591
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1592
+ Rendered people/new.html.erb within layouts/application (4.0ms)
1593
+ Completed 500 Internal Server Error in 7ms
1594
+
1595
+ ActionView::Template::Error (undefined method `new' for Bootstrap2FormBuilder:Module):
1596
+ 1: <%= bootstrap_form_for @person do |form| %>
1597
+ 2: <%= form.text_field :name %>
1598
+ 3: <%= form.text_field :email %>
1599
+ 4: <%= form.text_field :website %>
1600
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__637881679_31688616'
1601
+
1602
+
1603
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1604
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1605
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (28.0ms)
1606
+
1607
+
1608
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:30:14 -0400
1609
+ Connecting to database specified by database.yml
1610
+ Processing by PeopleController#new as HTML
1611
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1612
+ Rendered people/new.html.erb within layouts/application (13.5ms)
1613
+ Completed 500 Internal Server Error in 133ms
1614
+
1615
+ ActionView::Template::Error (uninitialized constant Bootstrap2FormBuilder::FormBuilder):
1616
+ 1: <%= bootstrap_form_for @person do |form| %>
1617
+ 2: <%= form.text_field :name %>
1618
+ 3: <%= form.text_field :email %>
1619
+ 4: <%= form.text_field :website %>
1620
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__896989406_38395980'
1621
+
1622
+
1623
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1624
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1625
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.0ms)
1626
+
1627
+
1628
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:30:44 -0400
1629
+ Connecting to database specified by database.yml
1630
+ Processing by PeopleController#new as HTML
1631
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1632
+ Rendered people/new.html.erb within layouts/application (15.0ms)
1633
+ Completed 500 Internal Server Error in 135ms
1634
+
1635
+ ActionView::Template::Error (uninitialized constant Bootstrap2FormBuilder::BootstrapFormHelper::FormBuilder):
1636
+ 1: <%= bootstrap_form_for @person do |form| %>
1637
+ 2: <%= form.text_field :name %>
1638
+ 3: <%= form.text_field :email %>
1639
+ 4: <%= form.text_field :website %>
1640
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb___638951269_35707284'
1641
+
1642
+
1643
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1644
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1645
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
1646
+
1647
+
1648
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:31:54 -0400
1649
+ Connecting to database specified by database.yml
1650
+ Processing by PeopleController#new as HTML
1651
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1652
+ Rendered people/new.html.erb within layouts/application (14.0ms)
1653
+ Completed 500 Internal Server Error in 134ms
1654
+
1655
+ ActionView::Template::Error (uninitialized constant Bootstrap2FormBuilder::FormBuilder):
1656
+ 1: <%= bootstrap_form_for @person do |form| %>
1657
+ 2: <%= form.text_field :name %>
1658
+ 3: <%= form.text_field :email %>
1659
+ 4: <%= form.text_field :website %>
1660
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__598765435_38658624'
1661
+
1662
+
1663
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1664
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1665
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.0ms)
1666
+
1667
+
1668
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:33:11 -0400
1669
+ Connecting to database specified by database.yml
1670
+ Processing by PeopleController#new as HTML
1671
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1672
+ Rendered people/new.html.erb within layouts/application (23.0ms)
1673
+ Compiled persons.css (1ms) (pid 1256)
1674
+ Compiled application.css (17ms) (pid 1256)
1675
+ Compiled jquery.js (6ms) (pid 1256)
1676
+ Compiled jquery_ujs.js (0ms) (pid 1256)
1677
+ Compiled persons.js (0ms) (pid 1256)
1678
+ Compiled application.js (98ms) (pid 1256)
1679
+ Completed 200 OK in 319ms (Views: 241.8ms | ActiveRecord: 7.0ms)
1680
+
1681
+
1682
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-21 22:33:12 -0400
1683
+ Served asset /application.css - 200 OK (6ms)
1684
+
1685
+
1686
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-21 22:33:12 -0400
1687
+ Served asset /jquery.js - 304 Not Modified (1ms)
1688
+
1689
+
1690
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-21 22:33:12 -0400
1691
+ Served asset /persons.css - 200 OK (1ms)
1692
+
1693
+
1694
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-21 22:33:12 -0400
1695
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1696
+
1697
+
1698
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-21 22:33:12 -0400
1699
+ Served asset /persons.js - 200 OK (2ms)
1700
+
1701
+
1702
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-21 22:33:12 -0400
1703
+ Served asset /application.js - 200 OK (3ms)
1704
+
1705
+
1706
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1707
+ Processing by PeopleController#new as HTML
1708
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1709
+ Rendered people/new.html.erb within layouts/application (3.0ms)
1710
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms)
1711
+
1712
+
1713
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1714
+ Served asset /jquery.js - 304 Not Modified (0ms)
1715
+
1716
+
1717
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1718
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1719
+
1720
+
1721
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1722
+ Served asset /application.css - 304 Not Modified (1ms)
1723
+
1724
+
1725
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1726
+ Served asset /persons.css - 304 Not Modified (0ms)
1727
+
1728
+
1729
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1730
+ Served asset /persons.js - 304 Not Modified (0ms)
1731
+
1732
+
1733
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:07 -0400
1734
+ Served asset /application.js - 304 Not Modified (0ms)
1735
+
1736
+
1737
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:35:33 -0400
1738
+ Connecting to database specified by database.yml
1739
+ Processing by PeopleController#new as HTML
1740
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1741
+ Rendered people/new.html.erb within layouts/application (22.0ms)
1742
+ Completed 200 OK in 146ms (Views: 68.5ms | ActiveRecord: 7.0ms)
1743
+
1744
+
1745
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-21 22:35:34 -0400
1746
+ Served asset /application.css - 304 Not Modified (3ms)
1747
+
1748
+
1749
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:34 -0400
1750
+ Served asset /jquery.js - 304 Not Modified (3ms)
1751
+
1752
+
1753
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:34 -0400
1754
+ Served asset /persons.js - 304 Not Modified (0ms)
1755
+
1756
+
1757
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:34 -0400
1758
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1759
+
1760
+
1761
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-21 22:35:34 -0400
1762
+ Served asset /application.js - 304 Not Modified (5ms)
1763
+
1764
+
1765
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-21 22:35:34 -0400
1766
+ Served asset /persons.css - 304 Not Modified (2ms)
1767
+
1768
+
1769
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:37:51 -0400
1770
+ Connecting to database specified by database.yml
1771
+ Processing by PeopleController#new as HTML
1772
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1773
+ Rendered people/new.html.erb within layouts/application (22.0ms)
1774
+ Completed 200 OK in 144ms (Views: 68.0ms | ActiveRecord: 7.0ms)
1775
+
1776
+
1777
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-21 22:37:52 -0400
1778
+ Served asset /application.css - 304 Not Modified (1ms)
1779
+
1780
+
1781
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-21 22:37:52 -0400
1782
+ Served asset /application.js - 304 Not Modified (4ms)
1783
+
1784
+
1785
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-21 22:37:52 -0400
1786
+ Served asset /jquery.js - 304 Not Modified (3ms)
1787
+
1788
+
1789
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-21 22:37:52 -0400
1790
+ Served asset /persons.js - 304 Not Modified (2ms)
1791
+
1792
+
1793
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-21 22:37:52 -0400
1794
+ Served asset /persons.css - 304 Not Modified (2ms)
1795
+
1796
+
1797
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-21 22:37:52 -0400
1798
+ Served asset /jquery_ujs.js - 304 Not Modified (12ms)
1799
+
1800
+
1801
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1802
+ Processing by PeopleController#new as HTML
1803
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1804
+ Rendered people/new.html.erb within layouts/application (2.0ms)
1805
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1806
+
1807
+
1808
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1809
+ Served asset /application.css - 304 Not Modified (0ms)
1810
+
1811
+
1812
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1813
+ Served asset /persons.css - 304 Not Modified (0ms)
1814
+
1815
+
1816
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1817
+ Served asset /jquery.js - 304 Not Modified (0ms)
1818
+
1819
+
1820
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1821
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1822
+
1823
+
1824
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1825
+ Served asset /persons.js - 304 Not Modified (0ms)
1826
+
1827
+
1828
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-21 22:38:04 -0400
1829
+ Served asset /application.js - 304 Not Modified (0ms)
1830
+
1831
+
1832
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-21 22:48:45 -0400
1833
+ Connecting to database specified by database.yml
1834
+ Processing by PeopleController#new as HTML
1835
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1836
+ Rendered people/new.html.erb within layouts/application (22.0ms)
1837
+ Completed 200 OK in 143ms (Views: 67.0ms | ActiveRecord: 6.0ms)
1838
+
1839
+
1840
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-21 22:48:46 -0400
1841
+ Served asset /application.css - 304 Not Modified (3ms)
1842
+
1843
+
1844
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-21 22:48:46 -0400
1845
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1846
+
1847
+
1848
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-21 22:48:46 -0400
1849
+ Served asset /persons.css - 304 Not Modified (3ms)
1850
+
1851
+
1852
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-21 22:48:46 -0400
1853
+ Served asset /persons.js - 304 Not Modified (2ms)
1854
+
1855
+
1856
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-21 22:48:46 -0400
1857
+ Served asset /jquery.js - 304 Not Modified (4ms)
1858
+
1859
+
1860
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-21 22:48:47 -0400
1861
+ Served asset /application.js - 304 Not Modified (14ms)
1862
+
1863
+
1864
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-23 01:01:54 -0400
1865
+ Connecting to database specified by database.yml
1866
+
1867
+ ActionController::RoutingError (No route matches [GET] "/persons/new"):
1868
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1869
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1870
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1871
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1872
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1873
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1874
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1875
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1876
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1877
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1878
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1879
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1880
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1881
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1882
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1883
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1884
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1885
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1886
+
1887
+
1888
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1889
+
1890
+
1891
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1892
+ Processing by PeopleController#new as HTML
1893
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1894
+ Rendered people/new.html.erb within layouts/application (26.0ms)
1895
+ Compiled jquery.js (15ms) (pid 32548)
1896
+ Compiled jquery_ujs.js (1ms) (pid 32548)
1897
+ Compiled application.js (88ms) (pid 32548)
1898
+ Completed 200 OK in 249ms (Views: 149.0ms | ActiveRecord: 13.0ms)
1899
+
1900
+
1901
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1902
+ Served asset /persons.css - 200 OK (1ms)
1903
+
1904
+
1905
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1906
+ Served asset /application.css - 200 OK (2ms)
1907
+
1908
+
1909
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1910
+ Served asset /jquery.js - 200 OK (3ms)
1911
+
1912
+
1913
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1914
+ Served asset /jquery_ujs.js - 200 OK (13ms)
1915
+
1916
+
1917
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1918
+ Served asset /persons.js - 200 OK (1ms)
1919
+
1920
+
1921
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:02:03 -0400
1922
+ Served asset /application.js - 200 OK (5ms)
1923
+
1924
+
1925
+ Started GET "/" for 127.0.0.1 at 2012-06-23 01:04:44 -0400
1926
+ Connecting to database specified by database.yml
1927
+
1928
+ ActionController::RoutingError (No route matches [GET] "/"):
1929
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1930
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1931
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1932
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1933
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1934
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1935
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1936
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1937
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1938
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1939
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1940
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1941
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1942
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1943
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1944
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1945
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1946
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1947
+
1948
+
1949
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
1950
+
1951
+
1952
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:04:48 -0400
1953
+ Processing by PeopleController#new as HTML
1954
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
1955
+ Rendered people/new.html.erb within layouts/application (14.0ms)
1956
+ Completed 200 OK in 112ms (Views: 28.0ms | ActiveRecord: 7.0ms)
1957
+
1958
+
1959
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:04:49 -0400
1960
+ Served asset /application.css - 304 Not Modified (3ms)
1961
+
1962
+
1963
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:04:49 -0400
1964
+ Served asset /persons.css - 304 Not Modified (1ms)
1965
+
1966
+
1967
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:04:49 -0400
1968
+ Served asset /jquery.js - 304 Not Modified (16ms)
1969
+
1970
+
1971
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:04:49 -0400
1972
+ Served asset /persons.js - 304 Not Modified (1ms)
1973
+
1974
+
1975
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:04:49 -0400
1976
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1977
+
1978
+
1979
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:04:49 -0400
1980
+ Served asset /application.js - 304 Not Modified (5ms)
1981
+
1982
+
1983
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:08:03 -0400
1984
+ Processing by PeopleController#new as HTML
1985
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
1986
+ Rendered people/new.html.erb within layouts/application (3.0ms)
1987
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1988
+
1989
+
1990
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:08:03 -0400
1991
+ Served asset /jquery.js - 304 Not Modified (0ms)
1992
+
1993
+
1994
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:08:03 -0400
1995
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1996
+
1997
+
1998
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:08:03 -0400
1999
+ Served asset /application.css - 304 Not Modified (0ms)
2000
+
2001
+
2002
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:08:03 -0400
2003
+ Served asset /persons.css - 304 Not Modified (0ms)
2004
+
2005
+
2006
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:08:04 -0400
2007
+ Served asset /persons.js - 304 Not Modified (0ms)
2008
+
2009
+
2010
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:08:04 -0400
2011
+ Served asset /application.js - 304 Not Modified (0ms)
2012
+
2013
+
2014
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:13:27 -0400
2015
+ Connecting to database specified by database.yml
2016
+ Processing by PeopleController#new as HTML
2017
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
2018
+ Rendered people/new.html.erb within layouts/application (15.0ms)
2019
+ Completed 200 OK in 151ms (Views: 66.0ms | ActiveRecord: 17.0ms)
2020
+
2021
+
2022
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:13:28 -0400
2023
+ Served asset /application.js - 304 Not Modified (15ms)
2024
+
2025
+
2026
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:13:29 -0400
2027
+ Served asset /jquery.js - 304 Not Modified (3ms)
2028
+
2029
+
2030
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:13:29 -0400
2031
+ Served asset /persons.js - 304 Not Modified (0ms)
2032
+
2033
+
2034
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:13:29 -0400
2035
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2036
+
2037
+
2038
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:13:29 -0400
2039
+ Served asset /application.css - 304 Not Modified (3ms)
2040
+
2041
+
2042
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:13:29 -0400
2043
+ Served asset /persons.css - 304 Not Modified (2ms)
2044
+
2045
+
2046
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:22:00 -0400
2047
+ Connecting to database specified by database.yml
2048
+ Processing by PeopleController#new as HTML
2049
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
2050
+ Rendered people/new.html.erb within layouts/application (15.0ms)
2051
+ Completed 200 OK in 139ms (Views: 61.0ms | ActiveRecord: 15.0ms)
2052
+
2053
+
2054
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:22:01 -0400
2055
+ Served asset /application.css - 304 Not Modified (3ms)
2056
+
2057
+
2058
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:22:01 -0400
2059
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2060
+
2061
+
2062
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:22:01 -0400
2063
+ Served asset /jquery.js - 304 Not Modified (3ms)
2064
+
2065
+
2066
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:22:01 -0400
2067
+ Served asset /persons.js - 304 Not Modified (1ms)
2068
+
2069
+
2070
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:22:01 -0400
2071
+ Served asset /persons.css - 304 Not Modified (0ms)
2072
+
2073
+
2074
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:22:02 -0400
2075
+ Served asset /application.js - 304 Not Modified (4ms)
2076
+
2077
+
2078
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:25:13 -0400
2079
+ Processing by PeopleController#new as HTML
2080
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
2081
+ Rendered people/new.html.erb within layouts/application (3.0ms)
2082
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
2083
+
2084
+
2085
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:25:14 -0400
2086
+ Served asset /jquery.js - 304 Not Modified (0ms)
2087
+
2088
+
2089
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:25:14 -0400
2090
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2091
+
2092
+
2093
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:25:14 -0400
2094
+ Served asset /persons.css - 304 Not Modified (0ms)
2095
+
2096
+
2097
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:25:14 -0400
2098
+ Served asset /application.css - 304 Not Modified (0ms)
2099
+
2100
+
2101
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:25:14 -0400
2102
+ Served asset /persons.js - 304 Not Modified (0ms)
2103
+
2104
+
2105
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:25:14 -0400
2106
+ Served asset /application.js - 304 Not Modified (1ms)
2107
+
2108
+
2109
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:29:21 -0400
2110
+ Connecting to database specified by database.yml
2111
+ Processing by PeopleController#new as HTML
2112
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
2113
+ Rendered people/new.html.erb within layouts/application (15.0ms)
2114
+ Completed 200 OK in 140ms (Views: 63.0ms | ActiveRecord: 15.0ms)
2115
+
2116
+
2117
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:29:22 -0400
2118
+ Served asset /persons.js - 304 Not Modified (1ms)
2119
+
2120
+
2121
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:29:22 -0400
2122
+ Served asset /jquery.js - 304 Not Modified (15ms)
2123
+
2124
+
2125
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:29:22 -0400
2126
+ Served asset /persons.css - 304 Not Modified (1ms)
2127
+
2128
+
2129
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:29:22 -0400
2130
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2131
+
2132
+
2133
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:29:22 -0400
2134
+ Served asset /application.css - 304 Not Modified (1ms)
2135
+
2136
+
2137
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:29:22 -0400
2138
+ Served asset /application.js - 304 Not Modified (4ms)
2139
+
2140
+
2141
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:31:08 -0400
2142
+ Connecting to database specified by database.yml
2143
+ Processing by PeopleController#new as HTML
2144
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
2145
+ Rendered people/new.html.erb within layouts/application (17.0ms)
2146
+ Completed 200 OK in 150ms (Views: 67.0ms | ActiveRecord: 16.0ms)
2147
+
2148
+
2149
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 01:31:09 -0400
2150
+ Served asset /application.css - 304 Not Modified (3ms)
2151
+
2152
+
2153
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 01:31:09 -0400
2154
+ Served asset /application.js - 304 Not Modified (3ms)
2155
+
2156
+
2157
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 01:31:09 -0400
2158
+ Served asset /persons.css - 304 Not Modified (2ms)
2159
+
2160
+
2161
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 01:31:09 -0400
2162
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2163
+
2164
+
2165
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 01:31:09 -0400
2166
+ Served asset /jquery.js - 304 Not Modified (4ms)
2167
+
2168
+
2169
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 01:31:09 -0400
2170
+ Served asset /persons.js - 304 Not Modified (2ms)
2171
+
2172
+
2173
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 01:35:45 -0400
2174
+ Connecting to database specified by database.yml
2175
+ Processing by PeopleController#new as HTML
2176
+ Rendered people/new.html.erb within layouts/application (2.0ms)
2177
+ Completed 500 Internal Server Error in 132ms
2178
+
2179
+ ActionView::Template::Error (uninitialized class variable @@default_form_layout in Bootstrap2FormBuilder::BootstrapFormHelper):
2180
+ 1: <%= bootstrap_form_for @person do |form| %>
2181
+ 2: <%= form.text_field :name %>
2182
+ 3: <%= form.text_field :email %>
2183
+ 4: <%= form.text_field :website %>
2184
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__162706878_36815508'
2185
+
2186
+
2187
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
2188
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2189
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.0ms)
2190
+
2191
+
2192
+ Started GET "/persons/new" for 127.0.0.1 at 2012-06-23 18:21:27 -0400
2193
+ Connecting to database specified by database.yml
2194
+
2195
+ ActionController::RoutingError (No route matches [GET] "/persons/new"):
2196
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2197
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2198
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2199
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2200
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2201
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2202
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2203
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2204
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2205
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2206
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2207
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2208
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2209
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2210
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2211
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2212
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2213
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2214
+
2215
+
2216
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2217
+
2218
+
2219
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:21:32 -0400
2220
+ Processing by PeopleController#new as HTML
2221
+ Rendered people/new.html.erb within layouts/application (1.0ms)
2222
+ Completed 500 Internal Server Error in 112ms
2223
+
2224
+ ActionView::Template::Error (uninitialized class variable @@default_form_layout in Bootstrap2FormBuilder::BootstrapFormHelper):
2225
+ 1: <%= bootstrap_form_for @person, :html => {:class => "form-vertical"} do |form| %>
2226
+ 2: <%= form.text_field :name %>
2227
+ 3: <%= form.text_field :email %>
2228
+ 4: <%= form.text_field :website %>
2229
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb___590325155_34398204'
2230
+
2231
+
2232
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
2233
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2234
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.0ms)
2235
+
2236
+
2237
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:22:58 -0400
2238
+ Connecting to database specified by database.yml
2239
+ Processing by PeopleController#new as HTML
2240
+ Rendered people/new.html.erb within layouts/application (0.0ms)
2241
+ Compiled application.js (14ms) (pid 5456)
2242
+ Completed 200 OK in 165ms (Views: 92.0ms | ActiveRecord: 8.0ms)
2243
+
2244
+
2245
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 18:22:59 -0400
2246
+ Served asset /persons.css - 304 Not Modified (1ms)
2247
+
2248
+
2249
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 18:22:59 -0400
2250
+ Served asset /application.css - 304 Not Modified (3ms)
2251
+
2252
+
2253
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 18:22:59 -0400
2254
+ Served asset /jquery.js - 304 Not Modified (1ms)
2255
+
2256
+
2257
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 18:22:59 -0400
2258
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2259
+
2260
+
2261
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 18:22:59 -0400
2262
+ Served asset /persons.js - 304 Not Modified (1ms)
2263
+
2264
+
2265
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 18:22:59 -0400
2266
+ Served asset /application.js - 304 Not Modified (3ms)
2267
+
2268
+
2269
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:40:36 -0400
2270
+ Connecting to database specified by database.yml
2271
+ Processing by PeopleController#new as HTML
2272
+ Rendered people/new.html.erb within layouts/application (4.0ms)
2273
+ Completed 500 Internal Server Error in 123ms
2274
+
2275
+ ActionView::Template::Error (can't convert Hash into String):
2276
+ 1: <%= bootstrap_form_for @person, :html => {:class => "form-vertical"} do |form| %>
2277
+ 2: <%= form.text_field :name %>
2278
+ 3: <%= form.text_field :email %>
2279
+ 4: <%= form.text_field :website %>
2280
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb___449933090_37552692'
2281
+
2282
+
2283
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
2284
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2285
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
2286
+
2287
+
2288
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:41:38 -0400
2289
+ Connecting to database specified by database.yml
2290
+ Processing by PeopleController#new as HTML
2291
+ Rendered people/new.html.erb within layouts/application (4.0ms)
2292
+ Completed 200 OK in 144ms (Views: 65.0ms | ActiveRecord: 7.0ms)
2293
+
2294
+
2295
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 18:41:39 -0400
2296
+ Served asset /application.css - 304 Not Modified (4ms)
2297
+
2298
+
2299
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 18:41:39 -0400
2300
+ Served asset /jquery.js - 304 Not Modified (2ms)
2301
+
2302
+
2303
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 18:41:39 -0400
2304
+ Served asset /persons.js - 304 Not Modified (1ms)
2305
+
2306
+
2307
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 18:41:39 -0400
2308
+ Served asset /persons.css - 304 Not Modified (11ms)
2309
+
2310
+
2311
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 18:41:39 -0400
2312
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2313
+
2314
+
2315
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 18:41:40 -0400
2316
+ Served asset /application.js - 304 Not Modified (3ms)
2317
+
2318
+
2319
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:43:39 -0400
2320
+ Connecting to database specified by database.yml
2321
+ Processing by PeopleController#new as HTML
2322
+ Rendered people/new.html.erb within layouts/application (3.0ms)
2323
+ Completed 200 OK in 135ms (Views: 52.0ms | ActiveRecord: 15.0ms)
2324
+
2325
+
2326
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 18:43:40 -0400
2327
+ Served asset /persons.css - 304 Not Modified (1ms)
2328
+
2329
+
2330
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 18:43:40 -0400
2331
+ Served asset /persons.js - 304 Not Modified (1ms)
2332
+
2333
+
2334
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 18:43:40 -0400
2335
+ Served asset /jquery.js - 304 Not Modified (12ms)
2336
+
2337
+
2338
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 18:43:40 -0400
2339
+ Served asset /application.css - 304 Not Modified (3ms)
2340
+
2341
+
2342
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 18:43:40 -0400
2343
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2344
+
2345
+
2346
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 18:43:40 -0400
2347
+ Served asset /application.js - 304 Not Modified (5ms)
2348
+
2349
+
2350
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:45:16 -0400
2351
+ Connecting to database specified by database.yml
2352
+ Processing by PeopleController#new as HTML
2353
+ Rendered people/new.html.erb within layouts/application (3.0ms)
2354
+ Completed 200 OK in 135ms (Views: 53.0ms | ActiveRecord: 15.0ms)
2355
+
2356
+
2357
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 18:45:17 -0400
2358
+ Served asset /persons.js - 304 Not Modified (0ms)
2359
+
2360
+
2361
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 18:45:17 -0400
2362
+ Served asset /application.css - 304 Not Modified (3ms)
2363
+
2364
+
2365
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 18:45:17 -0400
2366
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2367
+
2368
+
2369
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 18:45:17 -0400
2370
+ Served asset /persons.css - 304 Not Modified (1ms)
2371
+
2372
+
2373
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 18:45:17 -0400
2374
+ Served asset /jquery.js - 304 Not Modified (1ms)
2375
+
2376
+
2377
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 18:45:17 -0400
2378
+ Served asset /application.js - 304 Not Modified (5ms)
2379
+
2380
+
2381
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:47:28 -0400
2382
+ Connecting to database specified by database.yml
2383
+ Processing by PeopleController#new as HTML
2384
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__952362888_36189888 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2385
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
2386
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__952362888_36189888(local_assigns, output_buffer)
2387
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
2388
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
2389
+ <a href="#">
2390
+ *
2391
+ </a>
2392
+ <strong>
2393
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
2394
+ ');@output_buffer.safe_concat(' </strong>
2395
+ <ul>
2396
+ '); targer.errors.full_messages.each do |msg|
2397
+ @output_buffer.safe_concat(' <li>
2398
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
2399
+ ');@output_buffer.safe_concat(' </li>
2400
+ </ul>
2401
+ </div>
2402
+ '); end ;@output_buffer.to_s
2403
+ ensure
2404
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
2405
+ end
2406
+
2407
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
2408
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
2409
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
2410
+ <internal:prelude>:10:in `synchronize'
2411
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
2412
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
2413
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2414
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2415
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
2416
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
2417
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2418
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2419
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2420
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2421
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2422
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
2423
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
2424
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
2425
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
2426
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:35:in `bootstrap_form_for'
2427
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb___618783430_37455552'
2428
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
2429
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2430
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2431
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2432
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2433
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2434
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2435
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2436
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2437
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2438
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2439
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2440
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
2441
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
2442
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
2443
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
2444
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
2445
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
2446
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2447
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2448
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
2449
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
2450
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2451
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2452
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2453
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
2454
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2455
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2456
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2457
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
2458
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2459
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2460
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
2461
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
2462
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2463
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__506545370__process_action__108987480__callbacks'
2464
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2465
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2466
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2467
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
2468
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
2469
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2470
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2471
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2472
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2473
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2474
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2475
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2476
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
2477
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
2478
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
2479
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2480
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
2481
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
2482
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2483
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
2484
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
2485
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
2486
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
2487
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
2488
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2489
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
2490
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
2491
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
2492
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2493
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
2494
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
2495
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
2496
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
2497
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
2498
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2499
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2500
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__861275990__call__786678512__callbacks'
2501
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2502
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2503
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2504
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2505
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
2506
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2507
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2508
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2509
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
2510
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
2511
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
2512
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
2513
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
2514
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2515
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
2516
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
2517
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
2518
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
2519
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
2520
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
2521
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
2522
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2523
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2524
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2525
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
2526
+ Rendered people/new.html.erb within layouts/application (26.0ms)
2527
+ Completed 500 Internal Server Error in 147ms
2528
+
2529
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2530
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
2531
+ 14: </ul>
2532
+ 15: </div>
2533
+ 16: <% end %>
2534
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb___618783430_37455552'
2535
+
2536
+
2537
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
2538
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2539
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
2540
+
2541
+
2542
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:06 -0400
2543
+ Connecting to database specified by database.yml
2544
+ Processing by PeopleController#new as HTML
2545
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2546
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
2547
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
2548
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
2549
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
2550
+ <a href="#">
2551
+ *
2552
+ </a>
2553
+ <strong>
2554
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
2555
+ ');@output_buffer.safe_concat(' </strong>
2556
+ <ul>
2557
+ '); targer.errors.full_messages.each do |msg|
2558
+ @output_buffer.safe_concat(' <li>
2559
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
2560
+ ');@output_buffer.safe_concat(' </li>
2561
+ </ul>
2562
+ </div>
2563
+ '); end ;@output_buffer.to_s
2564
+ ensure
2565
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
2566
+ end
2567
+
2568
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
2569
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
2570
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
2571
+ <internal:prelude>:10:in `synchronize'
2572
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
2573
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
2574
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2575
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2576
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
2577
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
2578
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2579
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2580
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2581
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2582
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2583
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
2584
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
2585
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
2586
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
2587
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
2588
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
2589
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
2590
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2591
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2592
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2593
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2594
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2595
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2596
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2597
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2598
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2599
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2600
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2601
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
2602
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
2603
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
2604
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
2605
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
2606
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
2607
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2608
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2609
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
2610
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
2611
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2612
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2613
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2614
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
2615
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2616
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2617
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2618
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
2619
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2620
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2621
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
2622
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
2623
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2624
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
2625
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2626
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2627
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2628
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
2629
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
2630
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2631
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2632
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2633
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2634
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2635
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2636
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2637
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
2638
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
2639
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
2640
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2641
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
2642
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
2643
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2644
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
2645
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
2646
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
2647
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
2648
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
2649
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2650
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
2651
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
2652
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
2653
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2654
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
2655
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
2656
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
2657
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
2658
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
2659
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2660
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2661
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
2662
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2663
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2664
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2665
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2666
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
2667
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2668
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2669
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2670
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
2671
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
2672
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
2673
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
2674
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
2675
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2676
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
2677
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
2678
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
2679
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
2680
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
2681
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
2682
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
2683
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2684
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2685
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2686
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
2687
+ Rendered people/new.html.erb within layouts/application (13.0ms)
2688
+ Completed 500 Internal Server Error in 135ms
2689
+
2690
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2691
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
2692
+ 14: </ul>
2693
+ 15: </div>
2694
+ 16: <% end %>
2695
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
2696
+
2697
+
2698
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
2699
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2700
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
2701
+
2702
+
2703
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:10 -0400
2704
+ Processing by PeopleController#new as HTML
2705
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2706
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
2707
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
2708
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
2709
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
2710
+ <a href="#">
2711
+ *
2712
+ </a>
2713
+ <strong>
2714
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
2715
+ ');@output_buffer.safe_concat(' </strong>
2716
+ <ul>
2717
+ '); targer.errors.full_messages.each do |msg|
2718
+ @output_buffer.safe_concat(' <li>
2719
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
2720
+ ');@output_buffer.safe_concat(' </li>
2721
+ </ul>
2722
+ </div>
2723
+ '); end ;@output_buffer.to_s
2724
+ ensure
2725
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
2726
+ end
2727
+
2728
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
2729
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
2730
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
2731
+ <internal:prelude>:10:in `synchronize'
2732
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
2733
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
2734
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2735
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2736
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
2737
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
2738
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2739
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2740
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2741
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2742
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2743
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
2744
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
2745
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
2746
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
2747
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
2748
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
2749
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
2750
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2751
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2752
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2753
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2754
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2755
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2756
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2757
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2758
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2759
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2760
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2761
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
2762
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
2763
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
2764
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
2765
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
2766
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
2767
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2768
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2769
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
2770
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
2771
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2772
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2773
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2774
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
2775
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2776
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2777
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2778
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
2779
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2780
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2781
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
2782
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
2783
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2784
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
2785
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2786
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2787
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2788
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
2789
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
2790
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2791
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2792
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2793
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2794
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2795
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2796
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2797
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
2798
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
2799
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
2800
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2801
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
2802
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
2803
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2804
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
2805
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
2806
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
2807
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
2808
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
2809
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2810
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
2811
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
2812
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
2813
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2814
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
2815
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
2816
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
2817
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
2818
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
2819
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2820
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2821
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
2822
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2823
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2824
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2825
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2826
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
2827
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2828
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2829
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2830
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
2831
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
2832
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
2833
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
2834
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
2835
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2836
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
2837
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
2838
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
2839
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
2840
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
2841
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
2842
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
2843
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2844
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2845
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2846
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
2847
+ Rendered people/new.html.erb within layouts/application (2.0ms)
2848
+ Completed 500 Internal Server Error in 5ms
2849
+
2850
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2851
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
2852
+ 14: </ul>
2853
+ 15: </div>
2854
+ 16: <% end %>
2855
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
2856
+
2857
+
2858
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
2859
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2860
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.0ms)
2861
+
2862
+
2863
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:11 -0400
2864
+ Processing by PeopleController#new as HTML
2865
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
2866
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
2867
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
2868
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
2869
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
2870
+ <a href="#">
2871
+ *
2872
+ </a>
2873
+ <strong>
2874
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
2875
+ ');@output_buffer.safe_concat(' </strong>
2876
+ <ul>
2877
+ '); targer.errors.full_messages.each do |msg|
2878
+ @output_buffer.safe_concat(' <li>
2879
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
2880
+ ');@output_buffer.safe_concat(' </li>
2881
+ </ul>
2882
+ </div>
2883
+ '); end ;@output_buffer.to_s
2884
+ ensure
2885
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
2886
+ end
2887
+
2888
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
2889
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
2890
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
2891
+ <internal:prelude>:10:in `synchronize'
2892
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
2893
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
2894
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2895
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2896
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
2897
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
2898
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2899
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2900
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2901
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2902
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2903
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
2904
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
2905
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
2906
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
2907
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
2908
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
2909
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
2910
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
2911
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
2912
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2913
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2914
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2915
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2916
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2917
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2918
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2919
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2920
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2921
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
2922
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
2923
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
2924
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
2925
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
2926
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
2927
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2928
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2929
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
2930
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
2931
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2932
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2933
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2934
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
2935
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2936
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2937
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2938
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
2939
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2940
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2941
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
2942
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
2943
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2944
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
2945
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2946
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2947
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2948
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
2949
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
2950
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2951
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
2952
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2953
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
2954
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2955
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2956
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2957
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
2958
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
2959
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
2960
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2961
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
2962
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
2963
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2964
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
2965
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
2966
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
2967
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
2968
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
2969
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2970
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
2971
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
2972
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
2973
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2974
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
2975
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
2976
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
2977
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
2978
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
2979
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2980
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2981
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
2982
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
2983
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2984
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
2985
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2986
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
2987
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2988
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2989
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2990
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
2991
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
2992
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
2993
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
2994
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
2995
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2996
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
2997
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
2998
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
2999
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3000
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3001
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3002
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3003
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3004
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3005
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3006
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
3007
+ Rendered people/new.html.erb within layouts/application (3.0ms)
3008
+ Completed 500 Internal Server Error in 5ms
3009
+
3010
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3011
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3012
+ 14: </ul>
3013
+ 15: </div>
3014
+ 16: <% end %>
3015
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3016
+
3017
+
3018
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
3019
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3020
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
3021
+
3022
+
3023
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:12 -0400
3024
+ Processing by PeopleController#new as HTML
3025
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3026
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
3027
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
3028
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
3029
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
3030
+ <a href="#">
3031
+ *
3032
+ </a>
3033
+ <strong>
3034
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
3035
+ ');@output_buffer.safe_concat(' </strong>
3036
+ <ul>
3037
+ '); targer.errors.full_messages.each do |msg|
3038
+ @output_buffer.safe_concat(' <li>
3039
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
3040
+ ');@output_buffer.safe_concat(' </li>
3041
+ </ul>
3042
+ </div>
3043
+ '); end ;@output_buffer.to_s
3044
+ ensure
3045
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
3046
+ end
3047
+
3048
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
3049
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
3050
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
3051
+ <internal:prelude>:10:in `synchronize'
3052
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
3053
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
3054
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3055
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3056
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
3057
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
3058
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3059
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3060
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3061
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3062
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3063
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
3064
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
3065
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
3066
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
3067
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
3068
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3069
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
3070
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3071
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3072
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
3073
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3074
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3075
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3076
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3077
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3078
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
3079
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
3080
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
3081
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
3082
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
3083
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
3084
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
3085
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
3086
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
3087
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3088
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3089
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
3090
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
3091
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3092
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3093
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3094
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
3095
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3096
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3097
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3098
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
3099
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3100
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3101
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
3102
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
3103
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3104
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
3105
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3106
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3107
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3108
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
3109
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
3110
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3111
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3112
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3113
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3114
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3115
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3116
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3117
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
3118
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
3119
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
3120
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3121
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
3122
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
3123
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3124
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
3125
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
3126
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
3127
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
3128
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
3129
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3130
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
3131
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
3132
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
3133
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3134
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
3135
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
3136
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
3137
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
3138
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
3139
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3140
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3141
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
3142
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3143
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3144
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3145
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3146
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
3147
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3148
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3149
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3150
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
3151
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
3152
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
3153
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
3154
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
3155
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3156
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
3157
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
3158
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
3159
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3160
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3161
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3162
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3163
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3164
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3165
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3166
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
3167
+ Rendered people/new.html.erb within layouts/application (1.0ms)
3168
+ Completed 500 Internal Server Error in 6ms
3169
+
3170
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3171
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3172
+ 14: </ul>
3173
+ 15: </div>
3174
+ 16: <% end %>
3175
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3176
+
3177
+
3178
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
3179
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3180
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
3181
+
3182
+
3183
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:12 -0400
3184
+ Processing by PeopleController#new as HTML
3185
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3186
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
3187
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
3188
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
3189
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
3190
+ <a href="#">
3191
+ *
3192
+ </a>
3193
+ <strong>
3194
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
3195
+ ');@output_buffer.safe_concat(' </strong>
3196
+ <ul>
3197
+ '); targer.errors.full_messages.each do |msg|
3198
+ @output_buffer.safe_concat(' <li>
3199
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
3200
+ ');@output_buffer.safe_concat(' </li>
3201
+ </ul>
3202
+ </div>
3203
+ '); end ;@output_buffer.to_s
3204
+ ensure
3205
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
3206
+ end
3207
+
3208
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
3209
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
3210
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
3211
+ <internal:prelude>:10:in `synchronize'
3212
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
3213
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
3214
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3215
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3216
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
3217
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
3218
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3219
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3220
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3221
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3222
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3223
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
3224
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
3225
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
3226
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
3227
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
3228
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3229
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
3230
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3231
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3232
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
3233
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3234
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3235
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3236
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3237
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3238
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
3239
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
3240
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
3241
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
3242
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
3243
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
3244
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
3245
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
3246
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
3247
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3248
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3249
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
3250
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
3251
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3252
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3253
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3254
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
3255
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3256
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3257
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3258
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
3259
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3260
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3261
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
3262
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
3263
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3264
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
3265
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3266
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3267
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3268
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
3269
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
3270
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3271
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3272
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3273
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3274
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3275
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3276
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3277
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
3278
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
3279
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
3280
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3281
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
3282
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
3283
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3284
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
3285
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
3286
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
3287
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
3288
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
3289
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3290
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
3291
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
3292
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
3293
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3294
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
3295
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
3296
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
3297
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
3298
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
3299
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3300
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3301
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
3302
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3303
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3304
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3305
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3306
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
3307
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3308
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3309
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3310
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
3311
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
3312
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
3313
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
3314
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
3315
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3316
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
3317
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
3318
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
3319
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3320
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3321
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3322
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3323
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3324
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3325
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3326
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
3327
+ Rendered people/new.html.erb within layouts/application (2.0ms)
3328
+ Completed 500 Internal Server Error in 6ms
3329
+
3330
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3331
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3332
+ 14: </ul>
3333
+ 15: </div>
3334
+ 16: <% end %>
3335
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3336
+
3337
+
3338
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
3339
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3340
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (19.0ms)
3341
+
3342
+
3343
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:13 -0400
3344
+ Processing by PeopleController#new as HTML
3345
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3346
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
3347
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
3348
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
3349
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
3350
+ <a href="#">
3351
+ *
3352
+ </a>
3353
+ <strong>
3354
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
3355
+ ');@output_buffer.safe_concat(' </strong>
3356
+ <ul>
3357
+ '); targer.errors.full_messages.each do |msg|
3358
+ @output_buffer.safe_concat(' <li>
3359
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
3360
+ ');@output_buffer.safe_concat(' </li>
3361
+ </ul>
3362
+ </div>
3363
+ '); end ;@output_buffer.to_s
3364
+ ensure
3365
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
3366
+ end
3367
+
3368
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
3369
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
3370
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
3371
+ <internal:prelude>:10:in `synchronize'
3372
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
3373
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
3374
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3375
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3376
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
3377
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
3378
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3379
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3380
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3381
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3382
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3383
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
3384
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
3385
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
3386
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
3387
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
3388
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3389
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
3390
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3391
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3392
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
3393
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3394
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3395
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3396
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3397
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3398
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
3399
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
3400
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
3401
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
3402
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
3403
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
3404
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
3405
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
3406
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
3407
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3408
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3409
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
3410
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
3411
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3412
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3413
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3414
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
3415
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3416
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3417
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3418
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
3419
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3420
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3421
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
3422
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
3423
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3424
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
3425
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3426
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3427
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3428
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
3429
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
3430
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3431
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3432
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3433
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3434
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3435
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3436
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3437
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
3438
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
3439
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
3440
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3441
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
3442
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
3443
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3444
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
3445
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
3446
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
3447
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
3448
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
3449
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3450
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
3451
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
3452
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
3453
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3454
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
3455
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
3456
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
3457
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
3458
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
3459
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3460
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3461
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
3462
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3463
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3464
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3465
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3466
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
3467
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3468
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3469
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3470
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
3471
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
3472
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
3473
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
3474
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
3475
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3476
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
3477
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
3478
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
3479
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3480
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3481
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3482
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3483
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3484
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3485
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3486
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
3487
+ Rendered people/new.html.erb within layouts/application (2.0ms)
3488
+ Completed 500 Internal Server Error in 6ms
3489
+
3490
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3491
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3492
+ 14: </ul>
3493
+ 15: </div>
3494
+ 16: <% end %>
3495
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3496
+
3497
+
3498
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
3499
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
3500
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
3501
+
3502
+
3503
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:13 -0400
3504
+ Processing by PeopleController#new as HTML
3505
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3506
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
3507
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
3508
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
3509
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
3510
+ <a href="#">
3511
+ *
3512
+ </a>
3513
+ <strong>
3514
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
3515
+ ');@output_buffer.safe_concat(' </strong>
3516
+ <ul>
3517
+ '); targer.errors.full_messages.each do |msg|
3518
+ @output_buffer.safe_concat(' <li>
3519
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
3520
+ ');@output_buffer.safe_concat(' </li>
3521
+ </ul>
3522
+ </div>
3523
+ '); end ;@output_buffer.to_s
3524
+ ensure
3525
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
3526
+ end
3527
+
3528
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
3529
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
3530
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
3531
+ <internal:prelude>:10:in `synchronize'
3532
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
3533
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
3534
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3535
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3536
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
3537
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
3538
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3539
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3540
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3541
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3542
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3543
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
3544
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
3545
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
3546
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
3547
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
3548
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3549
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
3550
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3551
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3552
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
3553
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3554
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3555
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3556
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3557
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3558
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
3559
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
3560
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
3561
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
3562
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
3563
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
3564
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
3565
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
3566
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
3567
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3568
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3569
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
3570
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
3571
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3572
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3573
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3574
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
3575
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3576
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3577
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3578
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
3579
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3580
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3581
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
3582
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
3583
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3584
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
3585
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3586
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3587
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3588
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
3589
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
3590
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3591
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3592
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3593
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3594
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3595
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3596
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3597
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
3598
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
3599
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
3600
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3601
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
3602
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
3603
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3604
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
3605
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
3606
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
3607
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
3608
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
3609
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3610
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
3611
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
3612
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
3613
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3614
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
3615
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
3616
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
3617
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
3618
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
3619
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3620
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3621
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
3622
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3623
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3624
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3625
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3626
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
3627
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3628
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3629
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3630
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
3631
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
3632
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
3633
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
3634
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
3635
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3636
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
3637
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
3638
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
3639
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3640
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3641
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3642
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3643
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3644
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3645
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3646
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (1.0ms)
3647
+ Rendered people/new.html.erb within layouts/application (2.0ms)
3648
+ Completed 500 Internal Server Error in 5ms
3649
+
3650
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3651
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3652
+ 14: </ul>
3653
+ 15: </div>
3654
+ 16: <% end %>
3655
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3656
+
3657
+
3658
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
3659
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3660
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
3661
+
3662
+
3663
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:13 -0400
3664
+ Processing by PeopleController#new as HTML
3665
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3666
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
3667
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
3668
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
3669
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
3670
+ <a href="#">
3671
+ *
3672
+ </a>
3673
+ <strong>
3674
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
3675
+ ');@output_buffer.safe_concat(' </strong>
3676
+ <ul>
3677
+ '); targer.errors.full_messages.each do |msg|
3678
+ @output_buffer.safe_concat(' <li>
3679
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
3680
+ ');@output_buffer.safe_concat(' </li>
3681
+ </ul>
3682
+ </div>
3683
+ '); end ;@output_buffer.to_s
3684
+ ensure
3685
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
3686
+ end
3687
+
3688
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
3689
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
3690
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
3691
+ <internal:prelude>:10:in `synchronize'
3692
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
3693
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
3694
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3695
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3696
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
3697
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
3698
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3699
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3700
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3701
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3702
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3703
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
3704
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
3705
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
3706
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
3707
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
3708
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3709
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
3710
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3711
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3712
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
3713
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3714
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3715
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3716
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3717
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3718
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
3719
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
3720
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
3721
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
3722
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
3723
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
3724
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
3725
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
3726
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
3727
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3728
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3729
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
3730
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
3731
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3732
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3733
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3734
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
3735
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3736
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3737
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3738
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
3739
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3740
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3741
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
3742
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
3743
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3744
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
3745
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3746
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3747
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3748
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
3749
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
3750
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3751
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3752
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3753
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3754
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3755
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3756
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3757
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
3758
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
3759
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
3760
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3761
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
3762
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
3763
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3764
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
3765
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
3766
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
3767
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
3768
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
3769
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3770
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
3771
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
3772
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
3773
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3774
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
3775
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
3776
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
3777
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
3778
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
3779
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3780
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3781
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
3782
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3783
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3784
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3785
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3786
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
3787
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3788
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3789
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3790
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
3791
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
3792
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
3793
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
3794
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
3795
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3796
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
3797
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
3798
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
3799
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3800
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3801
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3802
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3803
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3804
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3805
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3806
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
3807
+ Rendered people/new.html.erb within layouts/application (2.0ms)
3808
+ Completed 500 Internal Server Error in 5ms
3809
+
3810
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3811
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3812
+ 14: </ul>
3813
+ 15: </div>
3814
+ 16: <% end %>
3815
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3816
+
3817
+
3818
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
3819
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3820
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.0ms)
3821
+
3822
+
3823
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:55:36 -0400
3824
+ Processing by PeopleController#new as HTML
3825
+ ERROR: compiling _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344 RAISED c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3826
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end
3827
+ Function body: def _app_views_bootstrap2_form_builder__error_messages_html_erb__1058386373_37189344(local_assigns, output_buffer)
3828
+ _old_virtual_path, @virtual_path = @virtual_path, "bootstrap2_form_builder/_error_messages";_old_output_buffer = @output_buffer;error_messages = local_assigns[:error_messages];target = local_assigns[:target];;@output_buffer = output_buffer || ActionView::OutputBuffer.new; if target.errors.any?
3829
+ @output_buffer.safe_concat(' <div class="alert-message block-message error fade in">
3830
+ <a href="#">
3831
+ *
3832
+ </a>
3833
+ <strong>
3834
+ ');@output_buffer.append= ( "#{pluralize(target.errors.count, "error")} prohibited this record from being saved:" );@output_buffer.safe_concat('
3835
+ ');@output_buffer.safe_concat(' </strong>
3836
+ <ul>
3837
+ '); targer.errors.full_messages.each do |msg|
3838
+ @output_buffer.safe_concat(' <li>
3839
+ ');@output_buffer.append= ( msg );@output_buffer.safe_concat('
3840
+ ');@output_buffer.safe_concat(' </li>
3841
+ </ul>
3842
+ </div>
3843
+ '); end ;@output_buffer.to_s
3844
+ ensure
3845
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
3846
+ end
3847
+
3848
+ Backtrace: c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
3849
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
3850
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
3851
+ <internal:prelude>:10:in `synchronize'
3852
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
3853
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
3854
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3855
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3856
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
3857
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
3858
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3859
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3860
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3861
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3862
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3863
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/partial_renderer.rb:237:in `render'
3864
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:41:in `render_partial'
3865
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/helpers/rendering_helper.rb:27:in `render'
3866
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb:13:in `render_with_haml'
3867
+ c:/users/zachary/documents/github/bootstrap2_form_builder/lib/bootstrap2_form_builder.rb:40:in `bootstrap_form_for'
3868
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3869
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:145:in `block in render'
3870
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
3871
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
3872
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
3873
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3874
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3875
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3876
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3877
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3878
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
3879
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
3880
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
3881
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
3882
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
3883
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
3884
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
3885
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
3886
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
3887
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3888
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3889
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
3890
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
3891
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3892
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3893
+ c:/Ruby193/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3894
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
3895
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3896
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3897
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3898
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
3899
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3900
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3901
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
3902
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
3903
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3904
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__204320040__process_action__830714116__callbacks'
3905
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3906
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3907
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3908
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
3909
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
3910
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3911
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
3912
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3913
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
3914
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3915
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3916
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3917
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
3918
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
3919
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
3920
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3921
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
3922
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
3923
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3924
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
3925
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
3926
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
3927
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
3928
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
3929
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3930
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
3931
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
3932
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
3933
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3934
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
3935
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
3936
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
3937
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
3938
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
3939
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3940
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3941
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__308224895__call__751283772__callbacks'
3942
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
3943
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3944
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
3945
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3946
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/reloader.rb:65:in `call'
3947
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3948
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3949
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3950
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
3951
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
3952
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
3953
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
3954
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
3955
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3956
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
3957
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
3958
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
3959
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
3960
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
3961
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/rack/log_tailer.rb:17:in `call'
3962
+ c:/Ruby193/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
3963
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3964
+ c:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3965
+ c:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3966
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
3967
+ Rendered people/new.html.erb within layouts/application (2.0ms)
3968
+ Completed 500 Internal Server Error in 5ms
3969
+
3970
+ ActionView::Template::Error (c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:17: syntax error, unexpected keyword_ensure, expecting keyword_end
3971
+ c:/users/zachary/documents/github/bootstrap2_form_builder/test/dummy/app/views/bootstrap2_form_builder/_error_messages.html.erb:19: syntax error, unexpected $end, expecting keyword_end):
3972
+ 14: </ul>
3973
+ 15: </div>
3974
+ 16: <% end %>
3975
+ app/views/people/new.html.erb:1:in `_app_views_people_new_html_erb__681691833_36870264'
3976
+
3977
+
3978
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
3979
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.0ms)
3980
+ Rendered c:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
3981
+
3982
+
3983
+ Started GET "/people/new" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
3984
+ Processing by PeopleController#new as HTML
3985
+ Rendered bootstrap2_form_builder/_error_messages.html.erb (0.0ms)
3986
+ Rendered people/new.html.erb within layouts/application (4.0ms)
3987
+ Completed 200 OK in 31ms (Views: 31.0ms | ActiveRecord: 0.0ms)
3988
+
3989
+
3990
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
3991
+ Served asset /application.css - 304 Not Modified (3ms)
3992
+
3993
+
3994
+ Started GET "/assets/persons.css?body=1" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
3995
+ Served asset /persons.css - 304 Not Modified (2ms)
3996
+
3997
+
3998
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
3999
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
4000
+
4001
+
4002
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
4003
+ Served asset /jquery.js - 304 Not Modified (2ms)
4004
+
4005
+
4006
+ Started GET "/assets/persons.js?body=1" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
4007
+ Served asset /persons.js - 304 Not Modified (1ms)
4008
+
4009
+
4010
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-23 18:56:06 -0400
4011
+ Served asset /application.js - 304 Not Modified (5ms)