erroneous 0.0.5 → 0.0.6

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 (68) hide show
  1. data/README.rdoc +1 -20
  2. data/Rakefile +25 -0
  3. data/lib/erroneous/version.rb +1 -1
  4. data/test/dummy/Rakefile +7 -0
  5. data/test/dummy/app/assets/javascripts/application.js +3 -0
  6. data/test/dummy/app/assets/javascripts/main.js +0 -0
  7. data/test/dummy/app/assets/javascripts/people.js +0 -0
  8. data/test/dummy/app/assets/stylesheets/application.css +39 -0
  9. data/test/dummy/app/assets/stylesheets/main.css +0 -0
  10. data/test/dummy/app/assets/stylesheets/people.css +0 -0
  11. data/test/dummy/app/controllers/application_controller.rb +3 -0
  12. data/test/dummy/app/controllers/main_controller.rb +10 -0
  13. data/test/dummy/app/controllers/people_controller.rb +49 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/helpers/main_helper.rb +2 -0
  16. data/test/dummy/app/helpers/people_helper.rb +2 -0
  17. data/test/dummy/app/models/person.rb +16 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/app/views/main/index.html.erb +5 -0
  20. data/test/dummy/app/views/people/_form.html.erb +27 -0
  21. data/test/dummy/app/views/people/edit.html.erb +3 -0
  22. data/test/dummy/app/views/people/index.html.erb +16 -0
  23. data/test/dummy/app/views/people/new.html.erb +3 -0
  24. data/test/dummy/app/views/people/show.html.erb +27 -0
  25. data/test/dummy/config/application.rb +45 -0
  26. data/test/dummy/config/boot.rb +10 -0
  27. data/test/dummy/config/database.yml +17 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +30 -0
  30. data/test/dummy/config/environments/production.rb +60 -0
  31. data/test/dummy/config/environments/test.rb +39 -0
  32. data/test/dummy/config/initializers/other.rb +2 -0
  33. data/test/dummy/config/locales/en.yml +1 -0
  34. data/test/dummy/config/routes.rb +7 -0
  35. data/test/dummy/config.ru +4 -0
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/db/migrate/20110109192118_create_people.rb +12 -0
  38. data/test/dummy/db/schema.rb +25 -0
  39. data/test/dummy/db/test.sqlite3 +0 -0
  40. data/test/dummy/log/development.log +604 -0
  41. data/test/dummy/log/test.log +286 -0
  42. data/test/dummy/public/favicon.ico +0 -0
  43. data/test/dummy/script/rails +6 -0
  44. data/test/dummy/test/fixtures/people.yml +5 -0
  45. data/test/dummy/test/functional/main_controller_test.rb +10 -0
  46. data/test/dummy/test/functional/people_controller_test.rb +53 -0
  47. data/test/dummy/test/unit/helpers/main_helper_test.rb +4 -0
  48. data/test/dummy/test/unit/helpers/people_helper_test.rb +4 -0
  49. data/test/dummy/test/unit/person_test.rb +7 -0
  50. data/test/dummy/tmp/cache/assets/BAB/A00/sprockets%2F347f335128024408181207cbc0461526 +0 -0
  51. data/test/dummy/tmp/cache/assets/C77/F30/sprockets%2F021780432569bfa6c8135d5d4111f2e8 +0 -0
  52. data/test/dummy/tmp/cache/assets/D06/B40/sprockets%2F25fca4643219052b0d5c66cf2c71f72f +0 -0
  53. data/test/dummy/tmp/cache/assets/D11/430/sprockets%2F25ea8d6063b1eb98361b1196f2fce807 +0 -0
  54. data/test/dummy/tmp/cache/assets/D24/5A0/sprockets%2F3a89b583dd80975d1e0968e730de5bc9 +0 -0
  55. data/test/dummy/tmp/cache/assets/D26/080/sprockets%2F14492c596885cafe7932045e4e7efd3f +0 -0
  56. data/test/dummy/tmp/cache/assets/D2D/490/sprockets%2F52514897c01dab621a0d9892aafb1ea2 +0 -0
  57. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  58. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  59. data/test/dummy/tmp/cache/assets/D58/1E0/sprockets%2Fdd863e40bd669f77bb549b257d88d6b5 +0 -0
  60. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  61. data/test/dummy/tmp/cache/assets/D87/E80/sprockets%2F576f5985cf4d78c5dd3d8ae55d22d7e1 +0 -0
  62. data/test/dummy/tmp/cache/assets/D8D/EA0/sprockets%2Fe64949cb167a0aa27a33a1adf1d544be +0 -0
  63. data/test/dummy/tmp/cache/assets/DA5/7E0/sprockets%2F87a5f378354ce6e80dda84ab1cfd06f3 +0 -0
  64. data/test/dummy/tmp/cache/assets/DA7/530/sprockets%2Fe36b8fcf5914a3a6bf058abfe7367b19 +0 -0
  65. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  66. data/test/erroneous_test.rb +7 -0
  67. data/test/test_helper.rb +8 -0
  68. metadata +180 -31
@@ -0,0 +1,604 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreatePeople (20111023060417)
7
+  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "url" varchar(255), "email" varchar(255), "phone" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111023060417')
9
+  (0.3ms) select sqlite_version(*)
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) PRAGMA index_list("people")
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+  (0.2ms) select sqlite_version(*)
14
+  (1.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "url" varchar(255), "email" varchar(255), "phone" varchar(255), "created_at" datetime, "updated_at" datetime) 
15
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
16
+  (0.0ms) PRAGMA index_list("schema_migrations")
17
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
+  (0.1ms) SELECT version FROM "schema_migrations"
19
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111023060417')
20
+
21
+
22
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:03 -0700
23
+
24
+ ActionController::RoutingError (No route matches [GET] "/"):
25
+
26
+
27
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (8.6ms)
28
+ Fixture Delete (0.4ms) DELETE FROM "people"
29
+ Fixture Insert (0.2ms) INSERT INTO "people" ("name", "url", "email", "phone", "created_at", "updated_at", "id") VALUES ('Kevin', 'http://ksylvest.com/', 'info@ksylvest.com', '(555) 555-5555', '2011-10-23 06:13:10', '2011-10-23 06:13:10', 712064548)
30
+
31
+
32
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:31 -0700
33
+
34
+ NameError (uninitialized constant Erroneous::Application):
35
+ config/routes.rb:1:in `<top (required)>'
36
+
37
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
38
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.5ms)
39
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.6ms)
40
+
41
+
42
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:31 -0700
43
+
44
+ ActionController::RoutingError (No route matches [GET] "/"):
45
+
46
+
47
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
48
+
49
+
50
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:32 -0700
51
+
52
+ ActionController::RoutingError (No route matches [GET] "/"):
53
+
54
+
55
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
56
+
57
+
58
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:33 -0700
59
+
60
+ ActionController::RoutingError (No route matches [GET] "/"):
61
+
62
+
63
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
64
+
65
+
66
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:34 -0700
67
+
68
+ ActionController::RoutingError (No route matches [GET] "/"):
69
+
70
+
71
+ Rendered /Users/kevin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
72
+
73
+
74
+ Started GET "/" for 127.0.0.1 at 2011-10-22 23:13:59 -0700
75
+ Processing by MainController#index as HTML
76
+ Rendered main/index.html.erb within layouts/application (9.2ms)
77
+ Compiled application.css (1ms) (pid 47928)
78
+ Compiled main.css (0ms) (pid 47928)
79
+ Compiled people.css (0ms) (pid 47928)
80
+ Compiled application.js (3ms) (pid 47928)
81
+ Compiled jquery.js (2ms) (pid 47928)
82
+ Compiled jquery_ujs.js (0ms) (pid 47928)
83
+ Compiled main.js (0ms) (pid 47928)
84
+ Compiled people.js (0ms) (pid 47928)
85
+ Completed 200 OK in 181ms (Views: 180.7ms | ActiveRecord: 0.0ms)
86
+
87
+
88
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
89
+ Served asset /people.css - 200 OK (12ms)
90
+
91
+
92
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
93
+ Served asset /main.css - 304 Not Modified (2ms)
94
+
95
+
96
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
97
+ Served asset /application.css - 200 OK (0ms)
98
+
99
+
100
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
101
+ Served asset /jquery.js - 304 Not Modified (3ms)
102
+
103
+
104
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
105
+ Served asset /people.js - 200 OK (2ms)
106
+
107
+
108
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
109
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
110
+
111
+
112
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
113
+ Served asset /main.js - 304 Not Modified (2ms)
114
+
115
+
116
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:00 -0700
117
+ Served asset /application.js - 304 Not Modified (0ms)
118
+
119
+
120
+ Started GET "/people" for 127.0.0.1 at 2011-10-22 23:14:02 -0700
121
+ Processing by PeopleController#index as HTML
122
+ Person Load (0.1ms) SELECT "people".* FROM "people" 
123
+ Rendered people/index.html.erb within layouts/application (8.5ms)
124
+ Completed 200 OK in 90ms (Views: 14.5ms | ActiveRecord: 0.9ms)
125
+
126
+
127
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:02 -0700
128
+ Served asset /jquery.js - 304 Not Modified (0ms)
129
+
130
+
131
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:02 -0700
132
+ Served asset /main.css - 304 Not Modified (0ms)
133
+
134
+
135
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:02 -0700
136
+ Served asset /application.js - 304 Not Modified (0ms)
137
+
138
+
139
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:02 -0700
140
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
141
+
142
+
143
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:02 -0700
144
+ Served asset /main.js - 304 Not Modified (0ms)
145
+
146
+
147
+ Started GET "/people/712064548/edit" for 127.0.0.1 at 2011-10-22 23:14:04 -0700
148
+ Processing by PeopleController#edit as HTML
149
+ Parameters: {"id"=>"712064548"}
150
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
151
+ Rendered people/_form.html.erb (11.0ms)
152
+ Rendered people/edit.html.erb within layouts/application (19.4ms)
153
+ Completed 200 OK in 33ms (Views: 26.0ms | ActiveRecord: 0.7ms)
154
+
155
+
156
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:04 -0700
157
+ Served asset /main.css - 304 Not Modified (0ms)
158
+
159
+
160
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:04 -0700
161
+ Served asset /main.js - 304 Not Modified (0ms)
162
+
163
+
164
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:04 -0700
165
+ Served asset /jquery.js - 304 Not Modified (0ms)
166
+
167
+
168
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:04 -0700
169
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
170
+
171
+
172
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:04 -0700
173
+ Served asset /application.js - 304 Not Modified (0ms)
174
+
175
+
176
+ Started GET "/people/712064548" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
177
+ Processing by PeopleController#show as HTML
178
+ Parameters: {"id"=>"712064548"}
179
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
180
+ Rendered people/show.html.erb within layouts/application (6.6ms)
181
+ Completed 200 OK in 48ms (Views: 42.6ms | ActiveRecord: 0.7ms)
182
+
183
+
184
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
185
+ Served asset /application.css - 304 Not Modified (0ms)
186
+
187
+
188
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
189
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
190
+
191
+
192
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
193
+ Served asset /main.css - 304 Not Modified (0ms)
194
+
195
+
196
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
197
+ Served asset /jquery.js - 304 Not Modified (0ms)
198
+
199
+
200
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
201
+ Served asset /main.js - 304 Not Modified (0ms)
202
+
203
+
204
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:07 -0700
205
+ Served asset /application.js - 304 Not Modified (0ms)
206
+
207
+
208
+ Started GET "/people" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
209
+ Processing by PeopleController#index as HTML
210
+ Person Load (0.1ms) SELECT "people".* FROM "people"
211
+ Rendered people/index.html.erb within layouts/application (7.7ms)
212
+ Completed 200 OK in 19ms (Views: 13.8ms | ActiveRecord: 0.6ms)
213
+
214
+
215
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
216
+ Served asset /main.css - 304 Not Modified (0ms)
217
+
218
+
219
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
220
+ Served asset /application.css - 304 Not Modified (0ms)
221
+
222
+
223
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
224
+ Served asset /people.css - 304 Not Modified (0ms)
225
+
226
+
227
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
228
+ Served asset /main.js - 304 Not Modified (0ms)
229
+
230
+
231
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
232
+ Served asset /people.js - 304 Not Modified (0ms)
233
+
234
+
235
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
236
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
237
+
238
+
239
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:21 -0700
240
+ Served asset /application.js - 304 Not Modified (0ms)
241
+
242
+
243
+ Started GET "/people" for 127.0.0.1 at 2011-10-22 23:14:53 -0700
244
+ Processing by PeopleController#index as HTML
245
+ Person Load (0.1ms) SELECT "people".* FROM "people" 
246
+ Rendered people/index.html.erb within layouts/application (10.1ms)
247
+ Completed 200 OK in 66ms (Views: 60.5ms | ActiveRecord: 0.8ms)
248
+
249
+
250
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
251
+ Served asset /application.css - 304 Not Modified (0ms)
252
+
253
+
254
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
255
+ Served asset /main.css - 304 Not Modified (0ms)
256
+
257
+
258
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
259
+ Served asset /jquery.js - 304 Not Modified (0ms)
260
+
261
+
262
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
263
+ Served asset /people.css - 304 Not Modified (0ms)
264
+
265
+
266
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
267
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
268
+
269
+
270
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
271
+ Served asset /main.js - 304 Not Modified (0ms)
272
+
273
+
274
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
275
+ Served asset /people.js - 304 Not Modified (0ms)
276
+
277
+
278
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
279
+ Served asset /application.js - 304 Not Modified (0ms)
280
+
281
+
282
+ Started GET "/people/712064548/edit" for 127.0.0.1 at 2011-10-22 23:14:54 -0700
283
+ Processing by PeopleController#edit as HTML
284
+ Parameters: {"id"=>"712064548"}
285
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
286
+ Rendered people/_form.html.erb (8.1ms)
287
+ Rendered people/edit.html.erb within layouts/application (8.7ms)
288
+ Completed 200 OK in 21ms (Views: 14.4ms | ActiveRecord: 0.8ms)
289
+
290
+
291
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
292
+ Served asset /people.css - 304 Not Modified (0ms)
293
+
294
+
295
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
296
+ Served asset /application.css - 304 Not Modified (0ms)
297
+
298
+
299
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
300
+ Served asset /jquery.js - 304 Not Modified (0ms)
301
+
302
+
303
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
304
+ Served asset /main.css - 304 Not Modified (0ms)
305
+
306
+
307
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
308
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
309
+
310
+
311
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
312
+ Served asset /main.js - 304 Not Modified (0ms)
313
+
314
+
315
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
316
+ Served asset /people.js - 304 Not Modified (0ms)
317
+
318
+
319
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:55 -0700
320
+ Served asset /application.js - 304 Not Modified (0ms)
321
+
322
+
323
+ Started PUT "/people/712064548" for 127.0.0.1 at 2011-10-22 23:14:56 -0700
324
+ Processing by PeopleController#update as HTML
325
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zIBLNp7sOUOaE+3Ka3ZGCO9mOmCAH+nnVfYRWZ5Eep8=", "person"=>{"name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555"}, "commit"=>"Update Person", "id"=>"712064548"}
326
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
327
+ Redirected to http://localhost:3000/people/712064548
328
+ Completed 302 Found in 13ms
329
+
330
+
331
+ Started GET "/people/712064548" for 127.0.0.1 at 2011-10-22 23:14:56 -0700
332
+ Processing by PeopleController#show as HTML
333
+ Parameters: {"id"=>"712064548"}
334
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
335
+ Rendered people/show.html.erb within layouts/application (6.3ms)
336
+ Completed 200 OK in 19ms (Views: 12.4ms | ActiveRecord: 0.6ms)
337
+
338
+
339
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:56 -0700
340
+ Served asset /application.css - 304 Not Modified (0ms)
341
+
342
+
343
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:56 -0700
344
+ Served asset /people.css - 304 Not Modified (0ms)
345
+
346
+
347
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:57 -0700
348
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
349
+
350
+
351
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:57 -0700
352
+ Served asset /jquery.js - 304 Not Modified (0ms)
353
+
354
+
355
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:57 -0700
356
+ Served asset /main.js - 304 Not Modified (0ms)
357
+
358
+
359
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:57 -0700
360
+ Served asset /main.css - 304 Not Modified (0ms)
361
+
362
+
363
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:57 -0700
364
+ Served asset /people.js - 304 Not Modified (0ms)
365
+
366
+
367
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:57 -0700
368
+ Served asset /application.js - 304 Not Modified (0ms)
369
+
370
+
371
+ Started GET "/people" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
372
+ Processing by PeopleController#index as HTML
373
+ Person Load (0.1ms) SELECT "people".* FROM "people" 
374
+ Rendered people/index.html.erb within layouts/application (7.2ms)
375
+ Completed 200 OK in 18ms (Views: 13.3ms | ActiveRecord: 0.6ms)
376
+
377
+
378
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
379
+ Served asset /main.js - 304 Not Modified (0ms)
380
+
381
+
382
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
383
+ Served asset /main.css - 304 Not Modified (0ms)
384
+
385
+
386
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
387
+ Served asset /people.css - 304 Not Modified (0ms)
388
+
389
+
390
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
391
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
392
+
393
+
394
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
395
+ Served asset /jquery.js - 304 Not Modified (0ms)
396
+
397
+
398
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
399
+ Served asset /application.css - 304 Not Modified (0ms)
400
+
401
+
402
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
403
+ Served asset /people.js - 304 Not Modified (0ms)
404
+
405
+
406
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:14:59 -0700
407
+ Served asset /application.js - 304 Not Modified (0ms)
408
+
409
+
410
+ Started GET "/people/712064548/edit" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
411
+ Processing by PeopleController#edit as HTML
412
+ Parameters: {"id"=>"712064548"}
413
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
414
+ Rendered people/_form.html.erb (8.2ms)
415
+ Rendered people/edit.html.erb within layouts/application (8.7ms)
416
+ Completed 200 OK in 52ms (Views: 46.7ms | ActiveRecord: 0.6ms)
417
+
418
+
419
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
420
+ Served asset /people.css - 304 Not Modified (0ms)
421
+
422
+
423
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
424
+ Served asset /main.css - 304 Not Modified (0ms)
425
+
426
+
427
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
428
+ Served asset /application.css - 304 Not Modified (0ms)
429
+
430
+
431
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
432
+ Served asset /main.js - 304 Not Modified (0ms)
433
+
434
+
435
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
436
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
437
+
438
+
439
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
440
+ Served asset /jquery.js - 304 Not Modified (0ms)
441
+
442
+
443
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
444
+ Served asset /people.js - 304 Not Modified (0ms)
445
+
446
+
447
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:00 -0700
448
+ Served asset /application.js - 304 Not Modified (0ms)
449
+
450
+
451
+ Started PUT "/people/712064548" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
452
+ Processing by PeopleController#update as HTML
453
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zIBLNp7sOUOaE+3Ka3ZGCO9mOmCAH+nnVfYRWZ5Eep8=", "person"=>{"name"=>"Kevin", "url"=>"", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555"}, "commit"=>"Update Person", "id"=>"712064548"}
454
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
455
+  (0.4ms) UPDATE "people" SET "url" = '', "updated_at" = '2011-10-23 06:15:03.156290' WHERE "people"."id" = 712064548
456
+ Redirected to http://localhost:3000/people/712064548
457
+ Completed 302 Found in 28ms
458
+
459
+
460
+ Started GET "/people/712064548" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
461
+ Processing by PeopleController#show as HTML
462
+ Parameters: {"id"=>"712064548"}
463
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
464
+ Rendered people/show.html.erb within layouts/application (6.7ms)
465
+ Completed 200 OK in 54ms (Views: 48.7ms | ActiveRecord: 0.7ms)
466
+
467
+
468
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
469
+ Served asset /main.css - 304 Not Modified (0ms)
470
+
471
+
472
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
473
+ Served asset /jquery.js - 304 Not Modified (0ms)
474
+
475
+
476
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
477
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
478
+
479
+
480
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
481
+ Served asset /main.js - 304 Not Modified (0ms)
482
+
483
+
484
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
485
+ Served asset /application.css - 304 Not Modified (0ms)
486
+
487
+
488
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
489
+ Served asset /people.css - 304 Not Modified (0ms)
490
+
491
+
492
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
493
+ Served asset /people.js - 304 Not Modified (0ms)
494
+
495
+
496
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:03 -0700
497
+ Served asset /application.js - 304 Not Modified (0ms)
498
+
499
+
500
+ Started GET "/people/712064548/edit" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
501
+ Processing by PeopleController#edit as HTML
502
+ Parameters: {"id"=>"712064548"}
503
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
504
+ Rendered people/_form.html.erb (10.8ms)
505
+ Rendered people/edit.html.erb within layouts/application (11.5ms)
506
+ Completed 200 OK in 25ms (Views: 18.6ms | ActiveRecord: 0.8ms)
507
+
508
+
509
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
510
+ Served asset /main.css - 304 Not Modified (0ms)
511
+
512
+
513
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
514
+ Served asset /application.css - 304 Not Modified (0ms)
515
+
516
+
517
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
518
+ Served asset /jquery.js - 304 Not Modified (0ms)
519
+
520
+
521
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
522
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
523
+
524
+
525
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
526
+ Served asset /people.css - 304 Not Modified (0ms)
527
+
528
+
529
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
530
+ Served asset /people.js - 304 Not Modified (0ms)
531
+
532
+
533
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
534
+ Served asset /main.js - 304 Not Modified (0ms)
535
+
536
+
537
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:04 -0700
538
+ Served asset /application.js - 304 Not Modified (0ms)
539
+
540
+
541
+ Started PUT "/people/712064548" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
542
+ Processing by PeopleController#update as HTML
543
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zIBLNp7sOUOaE+3Ka3ZGCO9mOmCAH+nnVfYRWZ5Eep8=", "person"=>{"name"=>"", "url"=>"", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555"}, "commit"=>"Update Person", "id"=>"712064548"}
544
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
545
+  (0.4ms) UPDATE "people" SET "name" = '', "updated_at" = '2011-10-23 06:15:06.845357' WHERE "people"."id" = 712064548
546
+ Redirected to http://localhost:3000/people/712064548
547
+ Completed 302 Found in 15ms
548
+
549
+
550
+ Started GET "/people/712064548" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
551
+ Processing by PeopleController#show as HTML
552
+ Parameters: {"id"=>"712064548"}
553
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
554
+ Rendered people/show.html.erb within layouts/application (6.8ms)
555
+ Completed 200 OK in 53ms (Views: 12.8ms | ActiveRecord: 0.8ms)
556
+
557
+
558
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
559
+ Served asset /application.css - 304 Not Modified (0ms)
560
+
561
+
562
+ Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
563
+ Served asset /main.css - 304 Not Modified (0ms)
564
+
565
+
566
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
567
+ Served asset /jquery.js - 304 Not Modified (0ms)
568
+
569
+
570
+ Started GET "/assets/people.css?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
571
+ Served asset /people.css - 304 Not Modified (0ms)
572
+
573
+
574
+ Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
575
+ Served asset /main.js - 304 Not Modified (0ms)
576
+
577
+
578
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
579
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
580
+
581
+
582
+ Started GET "/assets/people.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
583
+ Served asset /people.js - 304 Not Modified (0ms)
584
+
585
+
586
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 23:15:06 -0700
587
+ Served asset /application.js - 304 Not Modified (0ms)
588
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
589
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
590
+ Migrating to CreatePeople (20110109192118)
591
+  (0.0ms) select sqlite_version(*)
592
+  (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "url" varchar(255), "email" varchar(255), "phone" varchar(255), "created_at" datetime, "updated_at" datetime) 
593
+ SQLite3::SQLException: table "people" already exists: CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "url" varchar(255), "email" varchar(255), "phone" varchar(255), "created_at" datetime, "updated_at" datetime)
594
+  (0.1ms) select sqlite_version(*)
595
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
596
+  (0.0ms) PRAGMA index_list("schema_migrations")
597
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
598
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
599
+ Migrating to CreatePeople (20110109192118)
600
+  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "url" varchar(255), "email" varchar(255), "phone" varchar(255), "created_at" datetime, "updated_at" datetime)
601
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110109192118')
602
+  (0.3ms) select sqlite_version(*)
603
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
604
+  (0.0ms) PRAGMA index_list("people")