erroneous 0.0.6 → 0.0.7

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 (25) hide show
  1. data/LICENSE +1 -1
  2. data/README.rdoc +36 -1
  3. data/Rakefile +0 -9
  4. data/lib/erroneous/version.rb +1 -1
  5. data/test/dummy/db/development.sqlite3 +0 -0
  6. data/test/dummy/db/test.sqlite3 +0 -0
  7. data/test/dummy/log/development.log +14 -600
  8. data/test/dummy/log/test.log +54 -264
  9. metadata +19 -41
  10. data/test/dummy/tmp/cache/assets/BAB/A00/sprockets%2F347f335128024408181207cbc0461526 +0 -0
  11. data/test/dummy/tmp/cache/assets/C77/F30/sprockets%2F021780432569bfa6c8135d5d4111f2e8 +0 -0
  12. data/test/dummy/tmp/cache/assets/D06/B40/sprockets%2F25fca4643219052b0d5c66cf2c71f72f +0 -0
  13. data/test/dummy/tmp/cache/assets/D11/430/sprockets%2F25ea8d6063b1eb98361b1196f2fce807 +0 -0
  14. data/test/dummy/tmp/cache/assets/D24/5A0/sprockets%2F3a89b583dd80975d1e0968e730de5bc9 +0 -0
  15. data/test/dummy/tmp/cache/assets/D26/080/sprockets%2F14492c596885cafe7932045e4e7efd3f +0 -0
  16. data/test/dummy/tmp/cache/assets/D2D/490/sprockets%2F52514897c01dab621a0d9892aafb1ea2 +0 -0
  17. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  18. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  19. data/test/dummy/tmp/cache/assets/D58/1E0/sprockets%2Fdd863e40bd669f77bb549b257d88d6b5 +0 -0
  20. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  21. data/test/dummy/tmp/cache/assets/D87/E80/sprockets%2F576f5985cf4d78c5dd3d8ae55d22d7e1 +0 -0
  22. data/test/dummy/tmp/cache/assets/D8D/EA0/sprockets%2Fe64949cb167a0aa27a33a1adf1d544be +0 -0
  23. data/test/dummy/tmp/cache/assets/DA5/7E0/sprockets%2F87a5f378354ce6e80dda84ab1cfd06f3 +0 -0
  24. data/test/dummy/tmp/cache/assets/DA7/530/sprockets%2Fe36b8fcf5914a3a6bf058abfe7367b19 +0 -0
  25. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010 - 2011 Kevin Sylvestre
1
+ Copyright (c) 2010 - 2012 Kevin Sylvestre
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.rdoc CHANGED
@@ -1,3 +1,38 @@
1
1
  = Erroneous
2
2
 
3
- This project rocks and uses MIT-LICENSE.
3
+ Erroneous is a Ruby on Rails view helper that creates simple markup for inline errors.
4
+
5
+ == Requirements
6
+
7
+ The gem is tested with:
8
+
9
+ * Ruby on Rails 3.1.1
10
+ * Ruby (MRI) 1.9.3 (p0)
11
+ * Ruby (MRI) 1.9.2 (p290)
12
+ * Ruby (MRI) 1.8.7 (p352)
13
+ * Ruby (REE) 1.8.7 (2011.03)
14
+ * JRuby 1.6.5
15
+ * Rubinius 1.2.4
16
+
17
+ == Installation
18
+
19
+ gem install erroneous
20
+
21
+ == Examples
22
+
23
+ <%= errors @user, :name %>
24
+ <div class="errors">can't be blank</div>
25
+
26
+ <%= errors @user, :phone %>
27
+ <div class="errors">can't be blank and should look like a phone number</div>
28
+
29
+ <%= errors @user, :email %>
30
+ <div class="errors">can't be blank and should look like an email address</div>
31
+
32
+ == Status
33
+
34
+ {<img src="http://travis-ci.org/ksylvest/erroneous.png" />}[http://travis-ci.org/ksylvest/erroneous]
35
+
36
+ == Copyright
37
+
38
+ Copyright (c) 2010 - 2012 Kevin Sylvestre. See LICENSE for details.
data/Rakefile CHANGED
@@ -2,19 +2,10 @@
2
2
 
3
3
  require 'bundler'
4
4
 
5
- require 'rdoc/task'
6
5
  require 'rake/testtask'
7
6
 
8
7
  Bundler::GemHelper.install_tasks
9
8
 
10
- RDoc::Task.new(:rdoc) do |rdoc|
11
- rdoc.rdoc_dir = 'rdoc'
12
- rdoc.title = 'Erroneous'
13
- rdoc.options << '--line-numbers'
14
- rdoc.rdoc_files.include('README.rdoc')
15
- rdoc.rdoc_files.include('lib/**/*.rb')
16
- end
17
-
18
9
  Rake::TestTask.new(:test) do |t|
19
10
  t.libs << 'lib'
20
11
  t.libs << 'test'
@@ -1,3 +1,3 @@
1
1
  module Erroneous
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
Binary file
Binary file
@@ -1,604 +1,18 @@
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")
1
+ Connecting to database specified by database.yml
2
+  (1.3ms) select sqlite_version(*)
3
+  (1.6ms) 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)
4
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5
+  (0.0ms) PRAGMA index_list("schema_migrations")
6
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (0.1ms) SELECT version FROM "schema_migrations"
8
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110109192118')
9
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
10
+ Connecting to database specified by database.yml
5
11
   (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
12
   (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)
13
+  (1.2ms) 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) 
14
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
16
15
   (0.0ms) PRAGMA index_list("schema_migrations")
17
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
17
   (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")
18
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110109192118')
@@ -1,286 +1,76 @@
1
- Processing by MainController#index as HTML
2
- Rendered main/index.html.erb within layouts/application (10.1ms)
3
- Completed 200 OK in 82ms (Views: 81.8ms | ActiveRecord: 0.0ms)
4
- Processing by MainController#index as HTML
5
- Rendered main/index.html.erb within layouts/application (8.0ms)
6
- Completed 200 OK in 35ms (Views: 35.0ms | ActiveRecord: 0.0ms)
7
- Processing by MainController#index as HTML
8
- Rendered main/index.html.erb within layouts/application (8.1ms)
9
- Completed 200 OK in 67ms (Views: 66.6ms | ActiveRecord: 0.0ms)
10
- Fixture Delete (0.3ms) DELETE FROM "people"
11
- 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:09:59', '2011-10-23 06:09:59', 712064548)
12
- Processing by MainController#index as HTML
13
- Rendered main/index.html.erb within layouts/application (8.7ms)
14
- Completed 200 OK in 74ms (Views: 73.9ms | ActiveRecord: 0.0ms)
15
- Fixture Delete (0.3ms) DELETE FROM "people"
16
- 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:10:20', '2011-10-23 06:10:20', 712064548)
17
- Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
18
-  (0.1ms) SELECT COUNT(*) FROM "people"
19
- Processing by PeopleController#create as HTML
20
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:10:20 UTC", "updated_at"=>"2011-10-23 06:10:20 UTC"}}
1
+ Connecting to database specified by database.yml
2
+  (0.4ms) begin transaction
3
+  (0.0ms) rollback transaction
4
+  (0.0ms) begin transaction
5
+ Processing by MainController#index as HTML
6
+ Rendered main/index.html.erb within layouts/application (2.5ms)
7
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
8
+  (0.1ms) rollback transaction
9
+  (0.1ms) begin transaction
10
+ Fixture Delete (0.3ms) DELETE FROM "people"
11
+ 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', '2012-07-16 05:40:52', '2012-07-16 05:40:52', 712064548)
12
+  (0.7ms) commit transaction
13
+  (0.0ms) begin transaction
14
+ Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
15
+  (0.2ms) SELECT COUNT(*) FROM "people" 
16
+ Processing by PeopleController#create as HTML
17
+ Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2012-07-16 05:40:52 UTC", "updated_at"=>"2012-07-16 05:40:52 UTC"}}
21
18
  WARNING: Can't mass-assign protected attributes: id
22
-  (0.1ms) SAVEPOINT active_record_1
23
- SQL (0.7ms) INSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 06:10:20 UTC +00:00], ["email", "info@ksylvest.com"], ["name", "Kevin"], ["phone", "(555) 555-5555"], ["updated_at", Sun, 23 Oct 2011 06:10:20 UTC +00:00], ["url", "http://ksylvest.com/"]]
24
-  (0.0ms) RELEASE SAVEPOINT active_record_1
25
- Redirected to http://test.host/people/712064549
26
- Completed 302 Found in 7ms
27
-  (0.1ms) SELECT COUNT(*) FROM "people"
28
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
29
-  (0.1ms) SELECT COUNT(*) FROM "people"
30
- Processing by PeopleController#destroy as HTML
31
- Parameters: {"id"=>"712064548"}
32
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
33
-  (0.0ms) SAVEPOINT active_record_1
34
- SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
19
+  (0.4ms) SAVEPOINT active_record_1
20
+ SQL (0.6ms) INSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 16 Jul 2012 05:40:52 UTC +00:00], ["email", "info@ksylvest.com"], ["name", "Kevin"], ["phone", "(555) 555-5555"], ["updated_at", Mon, 16 Jul 2012 05:40:52 UTC +00:00], ["url", "http://ksylvest.com/"]]
35
21
   (0.0ms) RELEASE SAVEPOINT active_record_1
36
- Redirected to http://test.host/people
37
- Completed 302 Found in 2ms
22
+ Redirected to http://test.host/people/712064549
23
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
38
24
   (0.1ms) SELECT COUNT(*) FROM "people" 
25
+  (0.4ms) rollback transaction
26
+  (0.1ms) begin transaction
39
27
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
40
- Processing by PeopleController#edit as HTML
41
- Parameters: {"id"=>"712064548"}
42
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
43
- Rendered people/_form.html.erb (4.0ms)
44
- Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms)
45
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
46
- Processing by PeopleController#index as HTML
47
- Person Load (0.1ms) SELECT "people".* FROM "people" 
48
- Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
49
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
50
- Processing by PeopleController#new as HTML
51
- Rendered people/_form.html.erb (2.4ms)
52
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
53
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
54
- Processing by PeopleController#show as HTML
28
+  (0.1ms) SELECT COUNT(*) FROM "people" 
29
+ Processing by PeopleController#destroy as HTML
55
30
  Parameters: {"id"=>"712064548"}
56
31
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
57
- Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
58
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
59
- Processing by PeopleController#update as HTML
60
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:10:20 UTC", "updated_at"=>"2011-10-23 06:10:20 UTC"}, "id"=>"712064548"}
61
- Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
62
32
   (0.0ms) SAVEPOINT active_record_1
63
- WARNING: Can't mass-assign protected attributes: id
64
-  (0.0ms) RELEASE SAVEPOINT active_record_1
65
- Redirected to http://test.host/people/712064548
66
- Completed 302 Found in 3ms
67
- Processing by MainController#index as HTML
68
- Rendered main/index.html.erb within layouts/application (9.4ms)
69
- Completed 200 OK in 44ms (Views: 43.4ms | ActiveRecord: 0.0ms)
70
- Fixture Delete (0.3ms) DELETE FROM "people"
71
- 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:10:59', '2011-10-23 06:10:59', 712064548)
72
- Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
73
-  (0.1ms) SELECT COUNT(*) FROM "people"
74
- Processing by PeopleController#create as HTML
75
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:10:59 UTC", "updated_at"=>"2011-10-23 06:10:59 UTC"}}
76
- WARNING: Can't mass-assign protected attributes: id
77
-  (0.1ms) SAVEPOINT active_record_1
78
- SQL (0.6ms) INSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 06:10:59 UTC +00:00], ["email", "info@ksylvest.com"], ["name", "Kevin"], ["phone", "(555) 555-5555"], ["updated_at", Sun, 23 Oct 2011 06:10:59 UTC +00:00], ["url", "http://ksylvest.com/"]]
33
+ SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
79
34
   (0.0ms) RELEASE SAVEPOINT active_record_1
80
- Redirected to http://test.host/people/712064549
81
- Completed 302 Found in 7ms
82
-  (0.1ms) SELECT COUNT(*) FROM "people"
83
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
84
-  (0.1ms) SELECT COUNT(*) FROM "people"
85
- Processing by PeopleController#destroy as HTML
86
- Parameters: {"id"=>"712064548"}
87
- Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
88
-  (0.0ms) SAVEPOINT active_record_1
89
- SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
90
-  (0.0ms) RELEASE SAVEPOINT active_record_1
91
35
  Redirected to http://test.host/people
92
- Completed 302 Found in 2ms
93
-  (0.0ms) SELECT COUNT(*) FROM "people" 
94
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
95
- Processing by PeopleController#edit as HTML
96
- Parameters: {"id"=>"712064548"}
97
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
98
- Rendered people/_form.html.erb (3.8ms)
99
- Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.1ms)
100
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
101
- Processing by PeopleController#index as HTML
102
- Person Load (0.1ms) SELECT "people".* FROM "people" 
103
- Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
104
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
105
- Processing by PeopleController#new as HTML
106
- Rendered people/_form.html.erb (2.4ms)
107
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
108
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
109
- Processing by PeopleController#show as HTML
110
- Parameters: {"id"=>"712064548"}
111
- Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
112
- Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
113
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
114
- Processing by PeopleController#update as HTML
115
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:10:59 UTC", "updated_at"=>"2011-10-23 06:10:59 UTC"}, "id"=>"712064548"}
116
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
117
-  (0.1ms) SAVEPOINT active_record_1
118
- WARNING: Can't mass-assign protected attributes: id
119
-  (0.0ms) RELEASE SAVEPOINT active_record_1
120
- Redirected to http://test.host/people/712064548
121
- Completed 302 Found in 5ms
122
- Processing by MainController#index as HTML
123
- Rendered main/index.html.erb within layouts/application (11.8ms)
124
- Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.0ms)
125
- Fixture Delete (0.3ms) DELETE FROM "people"
126
- 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:16:35', '2011-10-23 06:16:35', 712064548)
127
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
128
-  (0.0ms) SELECT COUNT(*) FROM "people"
129
- Processing by PeopleController#create as HTML
130
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:16:35 UTC", "updated_at"=>"2011-10-23 06:16:35 UTC"}}
131
- WARNING: Can't mass-assign protected attributes: id
132
-  (0.1ms) SAVEPOINT active_record_1
133
- SQL (0.8ms) INSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 06:16:35 UTC +00:00], ["email", "info@ksylvest.com"], ["name", "Kevin"], ["phone", "(555) 555-5555"], ["updated_at", Sun, 23 Oct 2011 06:16:35 UTC +00:00], ["url", "http://ksylvest.com/"]]
134
-  (0.0ms) RELEASE SAVEPOINT active_record_1
135
- Redirected to http://test.host/people/712064549
136
- Completed 302 Found in 9ms
36
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
137
37
   (0.1ms) SELECT COUNT(*) FROM "people"
38
+  (0.3ms) rollback transaction
39
+  (0.1ms) begin transaction
138
40
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
139
-  (0.1ms) SELECT COUNT(*) FROM "people"
140
- Processing by PeopleController#destroy as HTML
141
- Parameters: {"id"=>"712064548"}
142
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
143
-  (0.1ms) SAVEPOINT active_record_1
144
- SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
145
-  (0.0ms) RELEASE SAVEPOINT active_record_1
146
- Redirected to http://test.host/people
147
- Completed 302 Found in 3ms
148
-  (0.1ms) SELECT COUNT(*) FROM "people" 
149
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
150
- Processing by PeopleController#edit as HTML
151
- Parameters: {"id"=>"712064548"}
152
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
153
- Rendered people/_form.html.erb (5.6ms)
154
- Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.1ms)
155
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
156
- Processing by PeopleController#index as HTML
157
- Person Load (0.1ms) SELECT "people".* FROM "people" 
158
- Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
159
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
160
- Processing by PeopleController#new as HTML
161
- Rendered people/_form.html.erb (2.6ms)
162
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
163
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
164
- Processing by PeopleController#show as HTML
41
+ Processing by PeopleController#edit as HTML
165
42
  Parameters: {"id"=>"712064548"}
166
43
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
167
- Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
44
+ Rendered people/_form.html.erb (10.6ms)
45
+ Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms)
46
+  (0.1ms) rollback transaction
47
+  (0.0ms) begin transaction
168
48
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
169
- Processing by PeopleController#update as HTML
170
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:16:35 UTC", "updated_at"=>"2011-10-23 06:16:35 UTC"}, "id"=>"712064548"}
171
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
172
-  (0.1ms) SAVEPOINT active_record_1
173
- WARNING: Can't mass-assign protected attributes: id
174
-  (0.0ms) RELEASE SAVEPOINT active_record_1
175
- Redirected to http://test.host/people/712064548
176
- Completed 302 Found in 4ms
177
- Processing by MainController#index as HTML
178
- Rendered main/index.html.erb within layouts/application (8.6ms)
179
- Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.0ms)
180
- Fixture Delete (0.4ms) DELETE FROM "people"
181
- 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:23:26', '2011-10-23 06:23:26', 712064548)
182
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
183
-  (0.0ms) SELECT COUNT(*) FROM "people"
184
- Processing by PeopleController#create as HTML
185
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:23:26 UTC", "updated_at"=>"2011-10-23 06:23:26 UTC"}}
186
- WARNING: Can't mass-assign protected attributes: id
187
-  (0.1ms) SAVEPOINT active_record_1
188
- SQL (0.5ms) INSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 06:23:26 UTC +00:00], ["email", "info@ksylvest.com"], ["name", "Kevin"], ["phone", "(555) 555-5555"], ["updated_at", Sun, 23 Oct 2011 06:23:26 UTC +00:00], ["url", "http://ksylvest.com/"]]
189
-  (0.0ms) RELEASE SAVEPOINT active_record_1
190
- Redirected to http://test.host/people/712064549
191
- Completed 302 Found in 30ms
192
-  (0.1ms) SELECT COUNT(*) FROM "people"
49
+ Processing by PeopleController#index as HTML
50
+ Person Load (0.2ms) SELECT "people".* FROM "people"
51
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
52
+  (0.1ms) rollback transaction
53
+  (0.0ms) begin transaction
193
54
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
194
-  (0.0ms) SELECT COUNT(*) FROM "people"
195
- Processing by PeopleController#destroy as HTML
196
- Parameters: {"id"=>"712064548"}
197
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
198
-  (0.1ms) SAVEPOINT active_record_1
199
- SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
200
-  (0.0ms) RELEASE SAVEPOINT active_record_1
201
- Redirected to http://test.host/people
202
- Completed 302 Found in 3ms
203
-  (0.1ms) SELECT COUNT(*) FROM "people" 
55
+ Processing by PeopleController#new as HTML
56
+ Rendered people/_form.html.erb (2.5ms)
57
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
58
+  (0.1ms) rollback transaction
59
+  (0.0ms) begin transaction
204
60
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
205
- Processing by PeopleController#edit as HTML
61
+ Processing by PeopleController#show as HTML
206
62
  Parameters: {"id"=>"712064548"}
207
63
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
208
- Rendered people/_form.html.erb (3.3ms)
209
- Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.1ms)
210
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
211
- Processing by PeopleController#index as HTML
212
- Person Load (0.1ms) SELECT "people".* FROM "people" 
213
- Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
64
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.1ms)
65
+  (0.1ms) rollback transaction
66
+  (0.0ms) begin transaction
214
67
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
215
- Processing by PeopleController#new as HTML
216
- Rendered people/_form.html.erb (2.7ms)
217
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
218
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
219
- Processing by PeopleController#show as HTML
220
- Parameters: {"id"=>"712064548"}
221
- Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
222
- Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
223
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
224
- Processing by PeopleController#update as HTML
225
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:23:26 UTC", "updated_at"=>"2011-10-23 06:23:26 UTC"}, "id"=>"712064548"}
226
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
227
- WARNING: Can't mass-assign protected attributes: id
228
-  (0.1ms) SAVEPOINT active_record_1
229
-  (0.0ms) RELEASE SAVEPOINT active_record_1
230
- Redirected to http://test.host/people/712064548
231
- Completed 302 Found in 6ms
232
- Processing by MainController#index as HTML
233
- Rendered main/index.html.erb within layouts/application (12.8ms)
234
- Completed 200 OK in 78ms (Views: 77.7ms | ActiveRecord: 0.0ms)
235
- Fixture Delete (0.4ms) DELETE FROM "people"
236
- 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:25:23', '2011-10-23 06:25:23', 712064548)
237
- Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
238
-  (0.0ms) SELECT COUNT(*) FROM "people"
239
- Processing by PeopleController#create as HTML
240
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:25:23 UTC", "updated_at"=>"2011-10-23 06:25:23 UTC"}}
241
- WARNING: Can't mass-assign protected attributes: id
242
-  (0.1ms) SAVEPOINT active_record_1
243
- SQL (0.6ms) INSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 06:25:23 UTC +00:00], ["email", "info@ksylvest.com"], ["name", "Kevin"], ["phone", "(555) 555-5555"], ["updated_at", Sun, 23 Oct 2011 06:25:23 UTC +00:00], ["url", "http://ksylvest.com/"]]
244
-  (0.0ms) RELEASE SAVEPOINT active_record_1
245
- Redirected to http://test.host/people/712064549
246
- Completed 302 Found in 33ms
247
-  (0.2ms) SELECT COUNT(*) FROM "people"
248
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
249
-  (0.1ms) SELECT COUNT(*) FROM "people"
250
- Processing by PeopleController#destroy as HTML
251
- Parameters: {"id"=>"712064548"}
252
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
253
-  (0.1ms) SAVEPOINT active_record_1
254
- SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
255
-  (0.0ms) RELEASE SAVEPOINT active_record_1
256
- Redirected to http://test.host/people
257
- Completed 302 Found in 4ms
258
-  (0.1ms) SELECT COUNT(*) FROM "people" 
259
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
260
- Processing by PeopleController#edit as HTML
261
- Parameters: {"id"=>"712064548"}
68
+ Processing by PeopleController#update as HTML
69
+ Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2012-07-16 05:40:52 UTC", "updated_at"=>"2012-07-16 05:40:52 UTC"}, "id"=>"712064548"}
262
70
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
263
- Rendered people/_form.html.erb (4.1ms)
264
- Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms)
265
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
266
- Processing by PeopleController#index as HTML
267
- Person Load (0.2ms) SELECT "people".* FROM "people" 
268
- Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.2ms)
269
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
270
- Processing by PeopleController#new as HTML
271
- Rendered people/_form.html.erb (4.4ms)
272
- Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
273
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
274
- Processing by PeopleController#show as HTML
275
- Parameters: {"id"=>"712064548"}
276
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
277
- Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.1ms)
278
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
279
- Processing by PeopleController#update as HTML
280
- Parameters: {"person"=>{"id"=>"712064548", "name"=>"Kevin", "url"=>"http://ksylvest.com/", "email"=>"info@ksylvest.com", "phone"=>"(555) 555-5555", "created_at"=>"2011-10-23 06:25:23 UTC", "updated_at"=>"2011-10-23 06:25:23 UTC"}, "id"=>"712064548"}
281
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
282
71
  WARNING: Can't mass-assign protected attributes: id
283
-  (0.1ms) SAVEPOINT active_record_1
284
-  (0.0ms) RELEASE SAVEPOINT active_record_1
72
+  (0.1ms) SAVEPOINT active_record_1
73
+  (0.0ms) RELEASE SAVEPOINT active_record_1
285
74
  Redirected to http://test.host/people/712064548
286
- Completed 302 Found in 11ms
75
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
76
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erroneous
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-10-23 00:00:00.000000000Z
12
+ date: 2012-07-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70344491390800 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>'
@@ -21,10 +21,15 @@ dependencies:
21
21
  version: 3.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70344491390800
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>'
28
+ - !ruby/object:Gem::Version
29
+ version: 3.0.0
25
30
  - !ruby/object:Gem::Dependency
26
31
  name: sqlite3
27
- requirement: &70344491390320 !ruby/object:Gem::Requirement
32
+ requirement: !ruby/object:Gem::Requirement
28
33
  none: false
29
34
  requirements:
30
35
  - - ! '>='
@@ -32,7 +37,12 @@ dependencies:
32
37
  version: '0'
33
38
  type: :development
34
39
  prerelease: false
35
- version_requirements: *70344491390320
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
36
46
  description: Erroneous adds inline errors to Rails views in a simple, sentence like
37
47
  format.
38
48
  email:
@@ -93,22 +103,6 @@ files:
93
103
  - test/dummy/test/unit/helpers/main_helper_test.rb
94
104
  - test/dummy/test/unit/helpers/people_helper_test.rb
95
105
  - test/dummy/test/unit/person_test.rb
96
- - test/dummy/tmp/cache/assets/BAB/A00/sprockets%2F347f335128024408181207cbc0461526
97
- - test/dummy/tmp/cache/assets/C77/F30/sprockets%2F021780432569bfa6c8135d5d4111f2e8
98
- - test/dummy/tmp/cache/assets/D06/B40/sprockets%2F25fca4643219052b0d5c66cf2c71f72f
99
- - test/dummy/tmp/cache/assets/D11/430/sprockets%2F25ea8d6063b1eb98361b1196f2fce807
100
- - test/dummy/tmp/cache/assets/D24/5A0/sprockets%2F3a89b583dd80975d1e0968e730de5bc9
101
- - test/dummy/tmp/cache/assets/D26/080/sprockets%2F14492c596885cafe7932045e4e7efd3f
102
- - test/dummy/tmp/cache/assets/D2D/490/sprockets%2F52514897c01dab621a0d9892aafb1ea2
103
- - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
104
- - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
105
- - test/dummy/tmp/cache/assets/D58/1E0/sprockets%2Fdd863e40bd669f77bb549b257d88d6b5
106
- - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
107
- - test/dummy/tmp/cache/assets/D87/E80/sprockets%2F576f5985cf4d78c5dd3d8ae55d22d7e1
108
- - test/dummy/tmp/cache/assets/D8D/EA0/sprockets%2Fe64949cb167a0aa27a33a1adf1d544be
109
- - test/dummy/tmp/cache/assets/DA5/7E0/sprockets%2F87a5f378354ce6e80dda84ab1cfd06f3
110
- - test/dummy/tmp/cache/assets/DA7/530/sprockets%2Fe36b8fcf5914a3a6bf058abfe7367b19
111
- - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
112
106
  - test/erroneous_test.rb
113
107
  - test/test_helper.rb
114
108
  homepage: http://github.com/ksylvest/erroneous
@@ -125,7 +119,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
125
119
  version: '0'
126
120
  segments:
127
121
  - 0
128
- hash: -3947395746650863320
122
+ hash: -3448362181391292338
129
123
  required_rubygems_version: !ruby/object:Gem::Requirement
130
124
  none: false
131
125
  requirements:
@@ -134,10 +128,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
128
  version: '0'
135
129
  segments:
136
130
  - 0
137
- hash: -3947395746650863320
131
+ hash: -3448362181391292338
138
132
  requirements: []
139
133
  rubyforge_project:
140
- rubygems_version: 1.8.11
134
+ rubygems_version: 1.8.24
141
135
  signing_key:
142
136
  specification_version: 3
143
137
  summary: An easy way to display inline errors in forms
@@ -188,21 +182,5 @@ test_files:
188
182
  - test/dummy/test/unit/helpers/main_helper_test.rb
189
183
  - test/dummy/test/unit/helpers/people_helper_test.rb
190
184
  - test/dummy/test/unit/person_test.rb
191
- - test/dummy/tmp/cache/assets/BAB/A00/sprockets%2F347f335128024408181207cbc0461526
192
- - test/dummy/tmp/cache/assets/C77/F30/sprockets%2F021780432569bfa6c8135d5d4111f2e8
193
- - test/dummy/tmp/cache/assets/D06/B40/sprockets%2F25fca4643219052b0d5c66cf2c71f72f
194
- - test/dummy/tmp/cache/assets/D11/430/sprockets%2F25ea8d6063b1eb98361b1196f2fce807
195
- - test/dummy/tmp/cache/assets/D24/5A0/sprockets%2F3a89b583dd80975d1e0968e730de5bc9
196
- - test/dummy/tmp/cache/assets/D26/080/sprockets%2F14492c596885cafe7932045e4e7efd3f
197
- - test/dummy/tmp/cache/assets/D2D/490/sprockets%2F52514897c01dab621a0d9892aafb1ea2
198
- - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
199
- - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
200
- - test/dummy/tmp/cache/assets/D58/1E0/sprockets%2Fdd863e40bd669f77bb549b257d88d6b5
201
- - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
202
- - test/dummy/tmp/cache/assets/D87/E80/sprockets%2F576f5985cf4d78c5dd3d8ae55d22d7e1
203
- - test/dummy/tmp/cache/assets/D8D/EA0/sprockets%2Fe64949cb167a0aa27a33a1adf1d544be
204
- - test/dummy/tmp/cache/assets/DA5/7E0/sprockets%2F87a5f378354ce6e80dda84ab1cfd06f3
205
- - test/dummy/tmp/cache/assets/DA7/530/sprockets%2Fe36b8fcf5914a3a6bf058abfe7367b19
206
- - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
207
185
  - test/erroneous_test.rb
208
186
  - test/test_helper.rb