erroneous 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +1 -1
- data/README.rdoc +36 -1
- data/Rakefile +0 -9
- data/lib/erroneous/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +14 -600
- data/test/dummy/log/test.log +54 -264
- metadata +19 -41
- data/test/dummy/tmp/cache/assets/BAB/A00/sprockets%2F347f335128024408181207cbc0461526 +0 -0
- data/test/dummy/tmp/cache/assets/C77/F30/sprockets%2F021780432569bfa6c8135d5d4111f2e8 +0 -0
- data/test/dummy/tmp/cache/assets/D06/B40/sprockets%2F25fca4643219052b0d5c66cf2c71f72f +0 -0
- data/test/dummy/tmp/cache/assets/D11/430/sprockets%2F25ea8d6063b1eb98361b1196f2fce807 +0 -0
- data/test/dummy/tmp/cache/assets/D24/5A0/sprockets%2F3a89b583dd80975d1e0968e730de5bc9 +0 -0
- data/test/dummy/tmp/cache/assets/D26/080/sprockets%2F14492c596885cafe7932045e4e7efd3f +0 -0
- data/test/dummy/tmp/cache/assets/D2D/490/sprockets%2F52514897c01dab621a0d9892aafb1ea2 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/test/dummy/tmp/cache/assets/D58/1E0/sprockets%2Fdd863e40bd669f77bb549b257d88d6b5 +0 -0
- data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/test/dummy/tmp/cache/assets/D87/E80/sprockets%2F576f5985cf4d78c5dd3d8ae55d22d7e1 +0 -0
- data/test/dummy/tmp/cache/assets/D8D/EA0/sprockets%2Fe64949cb167a0aa27a33a1adf1d544be +0 -0
- data/test/dummy/tmp/cache/assets/DA5/7E0/sprockets%2F87a5f378354ce6e80dda84ab1cfd06f3 +0 -0
- data/test/dummy/tmp/cache/assets/DA7/530/sprockets%2Fe36b8fcf5914a3a6bf058abfe7367b19 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
data/LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -1,3 +1,38 @@
|
|
1
1
|
= Erroneous
|
2
2
|
|
3
|
-
|
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'
|
data/lib/erroneous/version.rb
CHANGED
Binary file
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1,604 +1,18 @@
|
|
1
|
-
|
2
|
-
[1m[
|
3
|
-
[1m[
|
4
|
-
[1m[
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (1.3ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (1.6ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
6
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
8
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110109192118')[0m
|
9
|
+
[1m[35m (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
10
|
+
Connecting to database specified by database.yml
|
5
11
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
-
Migrating to CreatePeople (20111023060417)
|
7
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111023060417')[0m
|
9
12
|
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
10
|
-
[1m[36m (
|
11
|
-
[1m[35m (0.
|
12
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
13
|
-
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
14
|
-
[1m[36m (1.4ms)[0m [1mCREATE 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) [0m
|
15
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
13
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
14
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
16
15
|
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
17
|
-
[1m[35m (0.
|
16
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
18
17
|
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
19
|
-
[1m[35m (0.
|
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
|
-
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "people"[0m
|
29
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
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
|
-
[1m[35mPerson Load (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
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
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
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
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
455
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
545
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
589
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
590
|
-
Migrating to CreatePeople (20110109192118)
|
591
|
-
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
592
|
-
[1m[36m (0.1ms)[0m [1mCREATE 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) [0m
|
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
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
595
|
-
[1m[35m (1.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
596
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
597
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
598
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
599
|
-
Migrating to CreatePeople (20110109192118)
|
600
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110109192118')[0m
|
602
|
-
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
603
|
-
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
604
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("people")
|
18
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110109192118')
|
data/test/dummy/log/test.log
CHANGED
@@ -1,286 +1,76 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
[1m[
|
11
|
-
[1m[
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
[1m[
|
16
|
-
|
17
|
-
|
18
|
-
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
9
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "people"
|
11
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT 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)[0m
|
12
|
+
[1m[35m (0.7ms)[0m commit transaction
|
13
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14
|
+
[1m[35mPerson Load (0.3ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
15
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
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
|
-
[1m[
|
23
|
-
[1m[
|
24
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25
|
-
Redirected to http://test.host/people/712064549
|
26
|
-
Completed 302 Found in 7ms
|
27
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
28
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
29
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
30
|
-
Processing by PeopleController#destroy as HTML
|
31
|
-
Parameters: {"id"=>"712064548"}
|
32
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
33
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
34
|
-
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 712064548]]
|
19
|
+
[1m[35m (0.4ms)[0m SAVEPOINT active_record_1
|
20
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "people" ("created_at", "email", "name", "phone", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
36
|
-
Redirected to http://test.host/people
|
37
|
-
Completed 302 Found in
|
22
|
+
Redirected to http://test.host/people/712064549
|
23
|
+
Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
|
38
24
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
25
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
39
27
|
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
40
|
-
|
41
|
-
|
42
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
43
|
-
Rendered people/_form.html.erb (4.0ms)
|
44
|
-
Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms)
|
45
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
46
|
-
Processing by PeopleController#index as HTML
|
47
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
48
|
-
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
49
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
54
|
-
Processing by PeopleController#show as HTML
|
28
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
29
|
+
Processing by PeopleController#destroy as HTML
|
55
30
|
Parameters: {"id"=>"712064548"}
|
56
31
|
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
57
|
-
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
58
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.0ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
62
32
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
63
|
-
|
64
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "people"[0m
|
71
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.3ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
73
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
78
|
-
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "people" WHERE "people"."id" = ? [["id", 712064548]]
|
79
34
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
80
|
-
Redirected to http://test.host/people/712064549
|
81
|
-
Completed 302 Found in 7ms
|
82
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
83
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
84
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
85
|
-
Processing by PeopleController#destroy as HTML
|
86
|
-
Parameters: {"id"=>"712064548"}
|
87
|
-
[1m[36mPerson Load (0.0ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
88
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
89
|
-
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 712064548]]
|
90
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
91
35
|
Redirected to http://test.host/people
|
92
|
-
Completed 302 Found in
|
93
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
94
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
95
|
-
Processing by PeopleController#edit as HTML
|
96
|
-
Parameters: {"id"=>"712064548"}
|
97
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
98
|
-
Rendered people/_form.html.erb (3.8ms)
|
99
|
-
Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.1ms)
|
100
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
101
|
-
Processing by PeopleController#index as HTML
|
102
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
103
|
-
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
104
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
109
|
-
Processing by PeopleController#show as HTML
|
110
|
-
Parameters: {"id"=>"712064548"}
|
111
|
-
[1m[35mPerson Load (0.0ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
112
|
-
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
113
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
117
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
118
|
-
WARNING: Can't mass-assign protected attributes: id
|
119
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "people"[0m
|
126
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.2ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
128
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
133
|
-
[1m[35mSQL (0.8ms)[0m 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
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
38
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
39
|
+
[1m[35m (0.1ms)[0m begin transaction
|
138
40
|
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
139
|
-
|
140
|
-
Processing by PeopleController#destroy as HTML
|
141
|
-
Parameters: {"id"=>"712064548"}
|
142
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
143
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
144
|
-
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 712064548]]
|
145
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
146
|
-
Redirected to http://test.host/people
|
147
|
-
Completed 302 Found in 3ms
|
148
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
149
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
150
|
-
Processing by PeopleController#edit as HTML
|
151
|
-
Parameters: {"id"=>"712064548"}
|
152
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
153
|
-
Rendered people/_form.html.erb (5.6ms)
|
154
|
-
Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.1ms)
|
155
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
156
|
-
Processing by PeopleController#index as HTML
|
157
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
158
|
-
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
159
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
164
|
-
Processing by PeopleController#show as HTML
|
41
|
+
Processing by PeopleController#edit as HTML
|
165
42
|
Parameters: {"id"=>"712064548"}
|
166
43
|
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
167
|
-
|
44
|
+
Rendered people/_form.html.erb (10.6ms)
|
45
|
+
Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms)
|
46
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
47
|
+
[1m[35m (0.0ms)[0m begin transaction
|
168
48
|
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
[1m[36m (0.1ms)[0m [
|
173
|
-
|
174
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "people"[0m
|
181
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.2ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
183
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
188
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
190
|
-
Redirected to http://test.host/people/712064549
|
191
|
-
Completed 302 Found in 30ms
|
192
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
49
|
+
Processing by PeopleController#index as HTML
|
50
|
+
[1m[35mPerson Load (0.2ms)[0m SELECT "people".* FROM "people"
|
51
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
|
52
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
53
|
+
[1m[35m (0.0ms)[0m begin transaction
|
193
54
|
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
[1m[
|
198
|
-
[1m[
|
199
|
-
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 712064548]]
|
200
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
201
|
-
Redirected to http://test.host/people
|
202
|
-
Completed 302 Found in 3ms
|
203
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
59
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
204
60
|
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
205
|
-
|
61
|
+
Processing by PeopleController#show as HTML
|
206
62
|
Parameters: {"id"=>"712064548"}
|
207
63
|
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
208
|
-
|
209
|
-
|
210
|
-
[1m[
|
211
|
-
Processing by PeopleController#index as HTML
|
212
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" [0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
214
67
|
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
215
|
-
|
216
|
-
|
217
|
-
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
218
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
219
|
-
Processing by PeopleController#show as HTML
|
220
|
-
Parameters: {"id"=>"712064548"}
|
221
|
-
[1m[35mPerson Load (0.0ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
222
|
-
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
223
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
227
|
-
WARNING: Can't mass-assign protected attributes: id
|
228
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
229
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "people"[0m
|
236
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.3ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
238
|
-
[1m[35m (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
243
|
-
[1m[35mSQL (0.6ms)[0m 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
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
245
|
-
Redirected to http://test.host/people/712064549
|
246
|
-
Completed 302 Found in 33ms
|
247
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "people"
|
248
|
-
[1m[36mPerson Load (0.2ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
249
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people"
|
250
|
-
Processing by PeopleController#destroy as HTML
|
251
|
-
Parameters: {"id"=>"712064548"}
|
252
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
253
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
254
|
-
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 712064548]]
|
255
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
256
|
-
Redirected to http://test.host/people
|
257
|
-
Completed 302 Found in 4ms
|
258
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "people" [0m
|
259
|
-
[1m[35mPerson Load (0.1ms)[0m 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
|
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
263
|
-
Rendered people/_form.html.erb (4.1ms)
|
264
|
-
Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms)
|
265
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 712064548]]
|
266
|
-
Processing by PeopleController#index as HTML
|
267
|
-
[1m[36mPerson Load (0.2ms)[0m [1mSELECT "people".* FROM "people" [0m
|
268
|
-
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.2ms)
|
269
|
-
[1m[35mPerson Load (0.2ms)[0m 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
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["id", 712064548]]
|
274
|
-
Processing by PeopleController#show as HTML
|
275
|
-
Parameters: {"id"=>"712064548"}
|
276
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
277
|
-
Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
278
|
-
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", "712064548"]]
|
282
71
|
WARNING: Can't mass-assign protected attributes: id
|
283
|
-
[1m[
|
284
|
-
[1m[
|
72
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
73
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
285
74
|
Redirected to http://test.host/people/712064548
|
286
|
-
Completed 302 Found in
|
75
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
|
76
|
+
[1m[35m (0.1ms)[0m 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.
|
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:
|
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:
|
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:
|
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:
|
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:
|
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: -
|
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: -
|
131
|
+
hash: -3448362181391292338
|
138
132
|
requirements: []
|
139
133
|
rubyforge_project:
|
140
|
-
rubygems_version: 1.8.
|
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
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|