suj-kana-validator 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +26 -0
  3. data/Rakefile +37 -0
  4. data/lib/suj/kana-validator.rb +2 -0
  5. data/lib/suj/kana-validator/core_ext/string.rb +37 -0
  6. data/lib/suj/kana-validator/kana-validator.rb +81 -0
  7. data/lib/suj/kana-validator/version.rb +5 -0
  8. data/lib/suj/tasks/kana_validator_tasks.rake +4 -0
  9. data/test/dummy/Rakefile +7 -0
  10. data/test/dummy/app/assets/javascripts/application.js +9 -0
  11. data/test/dummy/app/assets/javascripts/users.js +2 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  13. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  14. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/controllers/users_controller.rb +83 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/helpers/users_helper.rb +2 -0
  19. data/test/dummy/app/models/user.rb +5 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/test/dummy/app/views/users/_form.html.erb +35 -0
  22. data/test/dummy/app/views/users/edit.html.erb +6 -0
  23. data/test/dummy/app/views/users/index.html.erb +29 -0
  24. data/test/dummy/app/views/users/new.html.erb +5 -0
  25. data/test/dummy/app/views/users/show.html.erb +25 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +45 -0
  28. data/test/dummy/config/boot.rb +10 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +30 -0
  32. data/test/dummy/config/environments/production.rb +60 -0
  33. data/test/dummy/config/environments/test.rb +39 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/inflections.rb +10 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +60 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/db/migrate/20120608021810_create_users.rb +12 -0
  44. data/test/dummy/db/schema.rb +25 -0
  45. data/test/dummy/db/test.sqlite3 +0 -0
  46. data/test/dummy/log/development.log +1584 -0
  47. data/test/dummy/log/passenger.3000.log +160 -0
  48. data/test/dummy/log/test.log +0 -0
  49. data/test/dummy/public/404.html +26 -0
  50. data/test/dummy/public/422.html +26 -0
  51. data/test/dummy/public/500.html +26 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/script/rails +6 -0
  54. data/test/dummy/test/fixtures/users.yml +13 -0
  55. data/test/dummy/test/functional/users_controller_test.rb +4 -0
  56. data/test/dummy/test/unit/helpers/users_helper_test.rb +4 -0
  57. data/test/dummy/test/unit/user_test.rb +7 -0
  58. data/test/dummy/tmp/cache/assets/CAA/620/sprockets%2F87b209c0c9da28094a8d5581a21262c6 +28 -0
  59. data/test/dummy/tmp/cache/assets/CDF/070/sprockets%2F70e3c8a3916622c17858d520dcee0d92 +8 -0
  60. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +81 -0
  61. data/test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4 +61 -0
  62. data/test/dummy/tmp/cache/assets/D30/F40/sprockets%2F442e375a0a3046d7c75d5e19a323fcba +395 -0
  63. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +54 -0
  64. data/test/dummy/tmp/cache/assets/D46/650/sprockets%2Ff56253b5f374fff1a33fbbc9881c9124 +30 -0
  65. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +71 -0
  66. data/test/dummy/tmp/cache/assets/D73/220/sprockets%2F3dbc0a37f98fb43ec819b85a64d32c55 +10 -0
  67. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +9655 -0
  68. data/test/dummy/tmp/cache/assets/D92/1E0/sprockets%2Fef76c9d411f514a21de3ba820c33aff5 +9289 -0
  69. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +61 -0
  70. data/test/dummy/tmp/pids/passenger.3000.pid.lock +0 -0
  71. data/test/kana_validator_test.rb +34 -0
  72. data/test/test_helper.rb +10 -0
  73. metadata +209 -0
Binary file
@@ -0,0 +1,12 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.string :name_kana
6
+ t.string :name_halfkana
7
+ t.string :name_hiragana
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,25 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120608021810) do
15
+
16
+ create_table "users", :force => true do |t|
17
+ t.string "name"
18
+ t.string "name_kana"
19
+ t.string "name_halfkana"
20
+ t.string "name_hiragana"
21
+ t.datetime "created_at"
22
+ t.datetime "updated_at"
23
+ end
24
+
25
+ end
Binary file
@@ -0,0 +1,1584 @@
1
+  (0.0ms) select sqlite_version(*)
2
+  (121.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (116.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateUsers (20120608021810)
7
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "name_kana" varchar(255), "name_halfkana" varchar(255), "name_hiragana" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120608021810')
9
+  (0.3ms) select sqlite_version(*)
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) PRAGMA index_list("users")
12
+
13
+
14
+ Started GET "/" for 127.0.0.1 at 2012-06-08 11:23:22 +0900
15
+
16
+ ActionController::RoutingError (No route matches [GET] "/"):
17
+
18
+
19
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.6ms)
20
+
21
+
22
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 11:23:31 +0900
23
+ Processing by UsersController#index as HTML
24
+ User Load (0.1ms) SELECT "users".* FROM "users" 
25
+ Rendered users/index.html.erb within layouts/application (0.7ms)
26
+ Compiled application.css (16ms) (pid 22631)
27
+ Compiled scaffold.css (0ms) (pid 22631)
28
+ Compiled users.css (0ms) (pid 22631)
29
+ Compiled application.js (26ms) (pid 22631)
30
+ Compiled jquery.js (7ms) (pid 22631)
31
+ Compiled jquery_ujs.js (6ms) (pid 22631)
32
+ Compiled users.js (0ms) (pid 22631)
33
+ Completed 200 OK in 294ms (Views: 292.8ms | ActiveRecord: 0.1ms)
34
+
35
+
36
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
37
+ Served asset /users.js - 200 OK (50ms)
38
+
39
+
40
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
41
+ Served asset /scaffold.css - 200 OK (4ms)
42
+
43
+
44
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
45
+ Served asset /users.css - 200 OK (3ms)
46
+
47
+
48
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
49
+ Served asset /application.css - 200 OK (30ms)
50
+
51
+
52
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
53
+ Served asset /jquery.js - 304 Not Modified (2ms)
54
+
55
+
56
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
57
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
58
+
59
+
60
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:32 +0900
61
+ Served asset /application.js - 200 OK (8ms)
62
+
63
+
64
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 11:23:37 +0900
65
+ Processing by UsersController#new as HTML
66
+ Rendered users/_form.html.erb (15.5ms)
67
+ Rendered users/new.html.erb within layouts/application (37.0ms)
68
+ Completed 200 OK in 41ms (Views: 40.8ms | ActiveRecord: 0.3ms)
69
+
70
+
71
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:38 +0900
72
+ Served asset /jquery.js - 304 Not Modified (0ms)
73
+
74
+
75
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:38 +0900
76
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
77
+
78
+
79
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 11:23:42 +0900
80
+ Processing by UsersController#create as HTML
81
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>""}, "commit"=>"Create User"}
82
+ Rendered users/_form.html.erb (2.8ms)
83
+ Rendered users/new.html.erb within layouts/application (3.5ms)
84
+ Completed 200 OK in 16ms (Views: 7.7ms | ActiveRecord: 0.1ms)
85
+
86
+
87
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:42 +0900
88
+ Served asset /jquery.js - 304 Not Modified (0ms)
89
+
90
+
91
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:42 +0900
92
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
93
+
94
+
95
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 11:23:48 +0900
96
+ Processing by UsersController#create as HTML
97
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"TEsting"}, "commit"=>"Create User"}
98
+ Rendered users/_form.html.erb (3.2ms)
99
+ Rendered users/new.html.erb within layouts/application (3.9ms)
100
+ Completed 200 OK in 16ms (Views: 8.1ms | ActiveRecord: 0.1ms)
101
+
102
+
103
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:48 +0900
104
+ Served asset /jquery.js - 304 Not Modified (0ms)
105
+
106
+
107
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:48 +0900
108
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
109
+
110
+
111
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 11:23:56 +0900
112
+ Processing by UsersController#create as HTML
113
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"ホラシオ"}, "commit"=>"Create User"}
114
+ SQL (53.3ms) INSERT INTO "users" ("created_at", "name", "name_halfkana", "name_hiragana", "name_kana", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 08 Jun 2012 02:23:56 UTC +00:00], ["name", "Horacio"], ["name_halfkana", nil], ["name_hiragana", nil], ["name_kana", "ホラシオ"], ["updated_at", Fri, 08 Jun 2012 02:23:56 UTC +00:00]]
115
+ Redirected to http://localhost:3000/users/1
116
+ Completed 302 Found in 189ms
117
+
118
+
119
+ Started GET "/users/1" for 127.0.0.1 at 2012-06-08 11:23:57 +0900
120
+ Processing by UsersController#show as HTML
121
+ Parameters: {"id"=>"1"}
122
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
123
+ Rendered users/show.html.erb within layouts/application (6.3ms)
124
+ Completed 200 OK in 13ms (Views: 10.5ms | ActiveRecord: 0.4ms)
125
+
126
+
127
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:57 +0900
128
+ Served asset /jquery.js - 304 Not Modified (0ms)
129
+
130
+
131
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:23:57 +0900
132
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
133
+
134
+
135
+ Started GET "/users/1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
136
+ Processing by UsersController#show as HTML
137
+ Parameters: {"id"=>"1"}
138
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
139
+ Rendered users/show.html.erb within layouts/application (12.7ms)
140
+ Completed 200 OK in 48ms (Views: 45.8ms | ActiveRecord: 0.3ms)
141
+
142
+
143
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
144
+ Served asset /application.css - 304 Not Modified (0ms)
145
+
146
+
147
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
148
+ Served asset /scaffold.css - 304 Not Modified (1ms)
149
+
150
+
151
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
152
+ Served asset /jquery.js - 304 Not Modified (3ms)
153
+
154
+
155
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
156
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
157
+
158
+
159
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
160
+ Served asset /users.js - 304 Not Modified (1ms)
161
+
162
+
163
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
164
+ Served asset /users.css - 304 Not Modified (1ms)
165
+
166
+
167
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:32 +0900
168
+ Served asset /application.js - 304 Not Modified (0ms)
169
+
170
+
171
+ Started GET "/users/1/edit" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
172
+ Processing by UsersController#edit as HTML
173
+ Parameters: {"id"=>"1"}
174
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
175
+ Rendered users/_form.html.erb (8.4ms)
176
+ Rendered users/edit.html.erb within layouts/application (11.4ms)
177
+ Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.3ms)
178
+
179
+
180
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
181
+ Served asset /application.css - 304 Not Modified (0ms)
182
+
183
+
184
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
185
+ Served asset /scaffold.css - 304 Not Modified (0ms)
186
+
187
+
188
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
189
+ Served asset /users.css - 304 Not Modified (0ms)
190
+
191
+
192
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
193
+ Served asset /users.js - 304 Not Modified (0ms)
194
+
195
+
196
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
197
+ Served asset /jquery.js - 304 Not Modified (0ms)
198
+
199
+
200
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
201
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
202
+
203
+
204
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:37 +0900
205
+ Served asset /application.js - 304 Not Modified (0ms)
206
+
207
+
208
+ Started PUT "/users/1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
209
+ Processing by UsersController#update as HTML
210
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"ホラシオOK"}, "commit"=>"Update User", "id"=>"1"}
211
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
212
+ Rendered users/_form.html.erb (3.2ms)
213
+ Rendered users/edit.html.erb within layouts/application (3.9ms)
214
+ Completed 200 OK in 33ms (Views: 8.0ms | ActiveRecord: 0.3ms)
215
+
216
+
217
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
218
+ Served asset /application.css - 304 Not Modified (0ms)
219
+
220
+
221
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
222
+ Served asset /jquery.js - 304 Not Modified (0ms)
223
+
224
+
225
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
226
+ Served asset /scaffold.css - 304 Not Modified (0ms)
227
+
228
+
229
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
230
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
231
+
232
+
233
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
234
+ Served asset /users.js - 304 Not Modified (0ms)
235
+
236
+
237
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
238
+ Served asset /users.css - 304 Not Modified (0ms)
239
+
240
+
241
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 11:24:43 +0900
242
+ Served asset /application.js - 304 Not Modified (0ms)
243
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
244
+  (0.2ms) select sqlite_version(*)
245
+  (1278.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "name_kana" varchar(255), "name_halfkana" varchar(255), "name_hiragana" varchar(255), "created_at" datetime, "updated_at" datetime) 
246
+  (227.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
247
+  (0.1ms) PRAGMA index_list("schema_migrations")
248
+  (147.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
249
+  (0.1ms) SELECT version FROM "schema_migrations"
250
+  (109.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120608021810')
251
+
252
+
253
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:25:38 +0900
254
+
255
+ ActionController::RoutingError (undefined method `validates_japanese' for #<Class:0x00000003381410>):
256
+ app/models/user.rb:2:in `<class:User>'
257
+ app/models/user.rb:1:in `<top (required)>'
258
+ app/controllers/users_controller.rb:1:in `<top (required)>'
259
+
260
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.1ms)
261
+
262
+
263
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:27:57 +0900
264
+
265
+ ArgumentError (wrong number of arguments (0 for 1)):
266
+ app/models/user.rb:2:in `<class:User>'
267
+ app/models/user.rb:1:in `<top (required)>'
268
+ app/controllers/users_controller.rb:1:in `<top (required)>'
269
+
270
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
271
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
272
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
273
+
274
+
275
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:30:00 +0900
276
+ Processing by UsersController#new as HTML
277
+ Rendered users/_form.html.erb (13.2ms)
278
+ Rendered users/new.html.erb within layouts/application (17.8ms)
279
+ Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.2ms)
280
+
281
+
282
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
283
+ Served asset /application.css - 304 Not Modified (0ms)
284
+
285
+
286
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
287
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
288
+
289
+
290
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
291
+ Served asset /users.js - 304 Not Modified (1ms)
292
+
293
+
294
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
295
+ Served asset /jquery.js - 304 Not Modified (2ms)
296
+
297
+
298
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
299
+ Served asset /scaffold.css - 304 Not Modified (1ms)
300
+
301
+
302
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
303
+ Served asset /users.css - 304 Not Modified (2ms)
304
+
305
+
306
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:01 +0900
307
+ Served asset /application.js - 304 Not Modified (0ms)
308
+
309
+
310
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:30:11 +0900
311
+
312
+ ArgumentError (wrong number of arguments (0 for 1)):
313
+ app/models/user.rb:3:in `<class:User>'
314
+ app/models/user.rb:1:in `<top (required)>'
315
+ app/controllers/users_controller.rb:1:in `<top (required)>'
316
+
317
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
318
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
319
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
320
+
321
+
322
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:30:40 +0900
323
+
324
+ ArgumentError (wrong number of arguments (0 for 1)):
325
+ app/models/user.rb:3:in `<class:User>'
326
+ app/models/user.rb:1:in `<top (required)>'
327
+ app/controllers/users_controller.rb:1:in `<top (required)>'
328
+
329
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
330
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
331
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.3ms)
332
+
333
+
334
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:30:41 +0900
335
+
336
+ ArgumentError (wrong number of arguments (0 for 1)):
337
+ app/models/user.rb:3:in `<class:User>'
338
+ app/models/user.rb:1:in `<top (required)>'
339
+ app/controllers/users_controller.rb:1:in `<top (required)>'
340
+
341
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (18.0ms)
342
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
343
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.5ms)
344
+
345
+
346
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
347
+ Processing by UsersController#new as HTML
348
+ Rendered users/_form.html.erb (28.6ms)
349
+ Rendered users/new.html.erb within layouts/application (32.8ms)
350
+ Completed 200 OK in 65ms (Views: 63.9ms | ActiveRecord: 0.2ms)
351
+
352
+
353
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
354
+ Served asset /application.css - 304 Not Modified (0ms)
355
+
356
+
357
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
358
+ Served asset /jquery.js - 304 Not Modified (5ms)
359
+
360
+
361
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
362
+ Served asset /scaffold.css - 304 Not Modified (1ms)
363
+
364
+
365
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
366
+ Served asset /users.css - 304 Not Modified (1ms)
367
+
368
+
369
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
370
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
371
+
372
+
373
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
374
+ Served asset /users.js - 304 Not Modified (1ms)
375
+
376
+
377
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:30:48 +0900
378
+ Served asset /application.js - 304 Not Modified (0ms)
379
+
380
+
381
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
382
+ Processing by UsersController#new as HTML
383
+ Rendered users/_form.html.erb (13.6ms)
384
+ Rendered users/new.html.erb within layouts/application (18.3ms)
385
+ Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.2ms)
386
+
387
+
388
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
389
+ Served asset /application.css - 304 Not Modified (0ms)
390
+
391
+
392
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
393
+ Served asset /scaffold.css - 304 Not Modified (2ms)
394
+
395
+
396
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
397
+ Served asset /users.css - 304 Not Modified (1ms)
398
+
399
+
400
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
401
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
402
+
403
+
404
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
405
+ Served asset /jquery.js - 304 Not Modified (2ms)
406
+
407
+
408
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
409
+ Served asset /users.js - 304 Not Modified (1ms)
410
+
411
+
412
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:09 +0900
413
+ Served asset /application.js - 304 Not Modified (0ms)
414
+
415
+
416
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
417
+ Processing by UsersController#create as HTML
418
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"asdasd", "name_kana"=>"asdasd", "name_halfkana"=>"asdasd", "name_hiragana"=>"asdasda"}, "commit"=>"Create User"}
419
+ Rendered users/_form.html.erb (4.9ms)
420
+ Rendered users/new.html.erb within layouts/application (5.7ms)
421
+ Completed 200 OK in 18ms (Views: 10.4ms | ActiveRecord: 0.1ms)
422
+
423
+
424
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
425
+ Served asset /application.css - 304 Not Modified (0ms)
426
+
427
+
428
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
429
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
430
+
431
+
432
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
433
+ Served asset /scaffold.css - 304 Not Modified (0ms)
434
+
435
+
436
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
437
+ Served asset /users.css - 304 Not Modified (0ms)
438
+
439
+
440
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
441
+ Served asset /users.js - 304 Not Modified (0ms)
442
+
443
+
444
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
445
+ Served asset /application.js - 304 Not Modified (23ms)
446
+
447
+
448
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:16 +0900
449
+ Served asset /jquery.js - 304 Not Modified (0ms)
450
+
451
+
452
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
453
+ Processing by UsersController#create as HTML
454
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"asdasd", "name_kana"=>"", "name_halfkana"=>"asdasd", "name_hiragana"=>"asdasda"}, "commit"=>"Create User"}
455
+ Rendered users/_form.html.erb (4.5ms)
456
+ Rendered users/new.html.erb within layouts/application (5.1ms)
457
+ Completed 200 OK in 18ms (Views: 9.6ms | ActiveRecord: 0.1ms)
458
+
459
+
460
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
461
+ Served asset /application.css - 304 Not Modified (0ms)
462
+
463
+
464
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
465
+ Served asset /scaffold.css - 304 Not Modified (0ms)
466
+
467
+
468
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
469
+ Served asset /jquery.js - 304 Not Modified (0ms)
470
+
471
+
472
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
473
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
474
+
475
+
476
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
477
+ Served asset /users.css - 304 Not Modified (0ms)
478
+
479
+
480
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
481
+ Served asset /users.js - 304 Not Modified (0ms)
482
+
483
+
484
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:31:20 +0900
485
+ Served asset /application.js - 304 Not Modified (0ms)
486
+
487
+
488
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:31:47 +0900
489
+
490
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>true}:Hash):
491
+ app/models/user.rb:2:in `<class:User>'
492
+ app/models/user.rb:1:in `<top (required)>'
493
+ app/controllers/users_controller.rb:1:in `<top (required)>'
494
+
495
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
496
+
497
+
498
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:31:52 +0900
499
+
500
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>true}:Hash):
501
+ app/models/user.rb:2:in `<class:User>'
502
+ app/models/user.rb:1:in `<top (required)>'
503
+ app/controllers/users_controller.rb:1:in `<top (required)>'
504
+
505
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
506
+
507
+
508
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:31:54 +0900
509
+
510
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>true}:Hash):
511
+ app/models/user.rb:2:in `<class:User>'
512
+ app/models/user.rb:1:in `<top (required)>'
513
+ app/controllers/users_controller.rb:1:in `<top (required)>'
514
+
515
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
516
+
517
+
518
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
519
+ Processing by UsersController#new as HTML
520
+ Rendered users/_form.html.erb (8.1ms)
521
+ Rendered users/new.html.erb within layouts/application (8.6ms)
522
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms)
523
+
524
+
525
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
526
+ Served asset /users.css - 304 Not Modified (0ms)
527
+
528
+
529
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
530
+ Served asset /scaffold.css - 304 Not Modified (0ms)
531
+
532
+
533
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
534
+ Served asset /application.css - 304 Not Modified (0ms)
535
+
536
+
537
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
538
+ Served asset /jquery.js - 304 Not Modified (0ms)
539
+
540
+
541
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
542
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
543
+
544
+
545
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
546
+ Served asset /users.js - 304 Not Modified (0ms)
547
+
548
+
549
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:05 +0900
550
+ Served asset /application.js - 304 Not Modified (0ms)
551
+
552
+
553
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
554
+ Processing by UsersController#create as HTML
555
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
556
+ Rendered users/_form.html.erb (22.4ms)
557
+ Rendered users/new.html.erb within layouts/application (23.2ms)
558
+ Completed 200 OK in 38ms (Views: 27.7ms | ActiveRecord: 0.2ms)
559
+
560
+
561
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
562
+ Served asset /application.css - 304 Not Modified (0ms)
563
+
564
+
565
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
566
+ Served asset /scaffold.css - 304 Not Modified (0ms)
567
+
568
+
569
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
570
+ Served asset /users.css - 304 Not Modified (0ms)
571
+
572
+
573
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
574
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
575
+
576
+
577
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
578
+ Served asset /jquery.js - 304 Not Modified (0ms)
579
+
580
+
581
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
582
+ Served asset /application.js - 304 Not Modified (0ms)
583
+
584
+
585
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:07 +0900
586
+ Served asset /users.js - 304 Not Modified (0ms)
587
+
588
+
589
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
590
+ Processing by UsersController#create as HTML
591
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
592
+ SQL (4.1ms) INSERT INTO "users" ("created_at", "name", "name_halfkana", "name_hiragana", "name_kana", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 08 Jun 2012 03:33:37 UTC +00:00], ["name", ""], ["name_halfkana", ""], ["name_hiragana", ""], ["name_kana", ""], ["updated_at", Fri, 08 Jun 2012 03:33:37 UTC +00:00]]
593
+ Redirected to http://localhost:3000/users/2
594
+ Completed 302 Found in 136ms
595
+
596
+
597
+ Started GET "/users/2" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
598
+ Processing by UsersController#show as HTML
599
+ Parameters: {"id"=>"2"}
600
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
601
+ Rendered users/show.html.erb within layouts/application (6.3ms)
602
+ Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.4ms)
603
+
604
+
605
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
606
+ Served asset /application.css - 304 Not Modified (0ms)
607
+
608
+
609
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
610
+ Served asset /users.css - 304 Not Modified (0ms)
611
+
612
+
613
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
614
+ Served asset /scaffold.css - 304 Not Modified (0ms)
615
+
616
+
617
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
618
+ Served asset /users.js - 304 Not Modified (0ms)
619
+
620
+
621
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
622
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
623
+
624
+
625
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
626
+ Served asset /jquery.js - 304 Not Modified (0ms)
627
+
628
+
629
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:37 +0900
630
+ Served asset /application.js - 304 Not Modified (0ms)
631
+
632
+
633
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
634
+ Processing by UsersController#index as HTML
635
+ User Load (0.1ms) SELECT "users".* FROM "users" 
636
+ Rendered users/index.html.erb within layouts/application (7.4ms)
637
+ Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.3ms)
638
+
639
+
640
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
641
+ Served asset /application.css - 304 Not Modified (0ms)
642
+
643
+
644
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
645
+ Served asset /users.css - 304 Not Modified (0ms)
646
+
647
+
648
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
649
+ Served asset /scaffold.css - 304 Not Modified (0ms)
650
+
651
+
652
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
653
+ Served asset /users.js - 304 Not Modified (0ms)
654
+
655
+
656
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
657
+ Served asset /jquery.js - 304 Not Modified (0ms)
658
+
659
+
660
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
661
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
662
+
663
+
664
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:43 +0900
665
+ Served asset /application.js - 304 Not Modified (0ms)
666
+
667
+
668
+ Started DELETE "/users/1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
669
+ Processing by UsersController#destroy as HTML
670
+ Parameters: {"authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "id"=>"1"}
671
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
672
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
673
+ Redirected to http://localhost:3000/users
674
+ Completed 302 Found in 132ms
675
+
676
+
677
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
678
+ Processing by UsersController#index as HTML
679
+ User Load (0.1ms) SELECT "users".* FROM "users"
680
+ Rendered users/index.html.erb within layouts/application (29.1ms)
681
+ Completed 200 OK in 35ms (Views: 34.0ms | ActiveRecord: 0.3ms)
682
+
683
+
684
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
685
+ Served asset /application.css - 304 Not Modified (0ms)
686
+
687
+
688
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
689
+ Served asset /scaffold.css - 304 Not Modified (0ms)
690
+
691
+
692
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
693
+ Served asset /users.js - 304 Not Modified (0ms)
694
+
695
+
696
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
697
+ Served asset /application.js - 304 Not Modified (0ms)
698
+
699
+
700
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
701
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
702
+
703
+
704
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
705
+ Served asset /users.css - 304 Not Modified (0ms)
706
+
707
+
708
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:47 +0900
709
+ Served asset /jquery.js - 304 Not Modified (0ms)
710
+
711
+
712
+ Started DELETE "/users/2" for 127.0.0.1 at 2012-06-08 12:33:49 +0900
713
+ Processing by UsersController#destroy as HTML
714
+ Parameters: {"authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "id"=>"2"}
715
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
716
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
717
+ Redirected to http://localhost:3000/users
718
+ Completed 302 Found in 137ms
719
+
720
+
721
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
722
+ Processing by UsersController#index as HTML
723
+ User Load (0.1ms) SELECT "users".* FROM "users" 
724
+ Rendered users/index.html.erb within layouts/application (0.3ms)
725
+ Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.3ms)
726
+
727
+
728
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
729
+ Served asset /application.css - 304 Not Modified (0ms)
730
+
731
+
732
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
733
+ Served asset /scaffold.css - 304 Not Modified (0ms)
734
+
735
+
736
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
737
+ Served asset /jquery.js - 304 Not Modified (0ms)
738
+
739
+
740
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
741
+ Served asset /users.css - 304 Not Modified (0ms)
742
+
743
+
744
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
745
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
746
+
747
+
748
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
749
+ Served asset /users.js - 304 Not Modified (0ms)
750
+
751
+
752
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
753
+ Served asset /application.js - 304 Not Modified (0ms)
754
+
755
+
756
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
757
+ Processing by UsersController#new as HTML
758
+ Rendered users/_form.html.erb (26.4ms)
759
+ Rendered users/new.html.erb within layouts/application (26.9ms)
760
+ Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.2ms)
761
+
762
+
763
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
764
+ Served asset /scaffold.css - 304 Not Modified (0ms)
765
+
766
+
767
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
768
+ Served asset /application.css - 304 Not Modified (0ms)
769
+
770
+
771
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
772
+ Served asset /users.css - 304 Not Modified (0ms)
773
+
774
+
775
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
776
+ Served asset /jquery.js - 304 Not Modified (0ms)
777
+
778
+
779
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
780
+ Served asset /users.js - 304 Not Modified (0ms)
781
+
782
+
783
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
784
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
785
+
786
+
787
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:50 +0900
788
+ Served asset /application.js - 304 Not Modified (0ms)
789
+
790
+
791
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
792
+ Processing by UsersController#create as HTML
793
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
794
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "name_halfkana", "name_hiragana", "name_kana", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 08 Jun 2012 03:33:52 UTC +00:00], ["name", ""], ["name_halfkana", ""], ["name_hiragana", ""], ["name_kana", ""], ["updated_at", Fri, 08 Jun 2012 03:33:52 UTC +00:00]]
795
+ Redirected to http://localhost:3000/users/3
796
+ Completed 302 Found in 160ms
797
+
798
+
799
+ Started GET "/users/3" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
800
+ Processing by UsersController#show as HTML
801
+ Parameters: {"id"=>"3"}
802
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
803
+ Rendered users/show.html.erb within layouts/application (5.9ms)
804
+ Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.6ms)
805
+
806
+
807
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
808
+ Served asset /application.css - 304 Not Modified (0ms)
809
+
810
+
811
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
812
+ Served asset /scaffold.css - 304 Not Modified (0ms)
813
+
814
+
815
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
816
+ Served asset /users.css - 304 Not Modified (0ms)
817
+
818
+
819
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
820
+ Served asset /jquery.js - 304 Not Modified (0ms)
821
+
822
+
823
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
824
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
825
+
826
+
827
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
828
+ Served asset /application.js - 304 Not Modified (0ms)
829
+
830
+
831
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:52 +0900
832
+ Served asset /users.js - 304 Not Modified (0ms)
833
+
834
+
835
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
836
+ Processing by UsersController#index as HTML
837
+ User Load (0.1ms) SELECT "users".* FROM "users"
838
+ Rendered users/index.html.erb within layouts/application (6.2ms)
839
+ Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.3ms)
840
+
841
+
842
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
843
+ Served asset /application.css - 304 Not Modified (0ms)
844
+
845
+
846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
847
+ Served asset /jquery.js - 304 Not Modified (0ms)
848
+
849
+
850
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
851
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
852
+
853
+
854
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
855
+ Served asset /scaffold.css - 304 Not Modified (0ms)
856
+
857
+
858
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
859
+ Served asset /users.js - 304 Not Modified (0ms)
860
+
861
+
862
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
863
+ Served asset /users.css - 304 Not Modified (0ms)
864
+
865
+
866
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:33:58 +0900
867
+ Served asset /application.js - 304 Not Modified (0ms)
868
+
869
+
870
+ Started DELETE "/users/3" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
871
+ Processing by UsersController#destroy as HTML
872
+ Parameters: {"authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "id"=>"3"}
873
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
874
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
875
+ Redirected to http://localhost:3000/users
876
+ Completed 302 Found in 131ms
877
+
878
+
879
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
880
+ Processing by UsersController#index as HTML
881
+ User Load (0.1ms) SELECT "users".* FROM "users" 
882
+ Rendered users/index.html.erb within layouts/application (0.3ms)
883
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
884
+
885
+
886
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
887
+ Served asset /application.css - 304 Not Modified (0ms)
888
+
889
+
890
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
891
+ Served asset /users.css - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
895
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
896
+
897
+
898
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
899
+ Served asset /scaffold.css - 304 Not Modified (0ms)
900
+
901
+
902
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
903
+ Served asset /jquery.js - 304 Not Modified (0ms)
904
+
905
+
906
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
907
+ Served asset /application.js - 304 Not Modified (0ms)
908
+
909
+
910
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:34:01 +0900
911
+ Served asset /users.js - 304 Not Modified (0ms)
912
+
913
+
914
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:34:15 +0900
915
+
916
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>false}:Hash):
917
+ app/models/user.rb:2:in `<class:User>'
918
+ app/models/user.rb:1:in `<top (required)>'
919
+ app/controllers/users_controller.rb:1:in `<top (required)>'
920
+
921
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
922
+
923
+
924
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:39:43 +0900
925
+
926
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>false}:Hash):
927
+ app/models/user.rb:2:in `<class:User>'
928
+ app/models/user.rb:1:in `<top (required)>'
929
+ app/controllers/users_controller.rb:1:in `<top (required)>'
930
+
931
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
932
+
933
+
934
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:39:45 +0900
935
+
936
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>false}:Hash):
937
+ app/models/user.rb:2:in `<class:User>'
938
+ app/models/user.rb:1:in `<top (required)>'
939
+ app/controllers/users_controller.rb:1:in `<top (required)>'
940
+
941
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
942
+
943
+
944
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:42:10 +0900
945
+
946
+ ActionController::RoutingError (undefined method `to_sym' for {:allow_blank=>false}:Hash):
947
+ app/models/user.rb:2:in `<class:User>'
948
+ app/models/user.rb:1:in `<top (required)>'
949
+ app/controllers/users_controller.rb:1:in `<top (required)>'
950
+
951
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
952
+
953
+
954
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:43:05 +0900
955
+
956
+ ActionController::RoutingError (undefined local variable or method `type' for #<Class:0x000000029f6418>):
957
+ app/models/user.rb:2:in `<class:User>'
958
+ app/models/user.rb:1:in `<top (required)>'
959
+ app/controllers/users_controller.rb:1:in `<top (required)>'
960
+
961
+ Rendered /usr/lib/ruby/gems/1.9.1/gems/actionpack-3.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
962
+
963
+
964
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
965
+ Processing by UsersController#new as HTML
966
+ Rendered users/_form.html.erb (13.3ms)
967
+ Rendered users/new.html.erb within layouts/application (18.1ms)
968
+ Completed 200 OK in 49ms (Views: 48.6ms | ActiveRecord: 0.2ms)
969
+
970
+
971
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
972
+ Served asset /application.css - 304 Not Modified (0ms)
973
+
974
+
975
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
976
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
977
+
978
+
979
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
980
+ Served asset /jquery.js - 304 Not Modified (1ms)
981
+
982
+
983
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
984
+ Served asset /users.css - 304 Not Modified (1ms)
985
+
986
+
987
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
988
+ Served asset /scaffold.css - 304 Not Modified (2ms)
989
+
990
+
991
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
992
+ Served asset /users.js - 304 Not Modified (1ms)
993
+
994
+
995
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:43:39 +0900
996
+ Served asset /application.js - 304 Not Modified (0ms)
997
+
998
+
999
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1000
+ Processing by UsersController#new as HTML
1001
+ Rendered users/_form.html.erb (14.1ms)
1002
+ Rendered users/new.html.erb within layouts/application (34.0ms)
1003
+ Completed 200 OK in 51ms (Views: 50.2ms | ActiveRecord: 0.2ms)
1004
+
1005
+
1006
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1007
+ Served asset /application.css - 304 Not Modified (0ms)
1008
+
1009
+
1010
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1011
+ Served asset /scaffold.css - 304 Not Modified (2ms)
1012
+
1013
+
1014
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1015
+ Served asset /users.css - 304 Not Modified (2ms)
1016
+
1017
+
1018
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1019
+ Served asset /jquery.js - 304 Not Modified (2ms)
1020
+
1021
+
1022
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1023
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1024
+
1025
+
1026
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1027
+ Served asset /users.js - 304 Not Modified (1ms)
1028
+
1029
+
1030
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:30 +0900
1031
+ Served asset /application.js - 304 Not Modified (0ms)
1032
+
1033
+
1034
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1035
+ Processing by UsersController#new as HTML
1036
+ Rendered users/_form.html.erb (8.9ms)
1037
+ Rendered users/new.html.erb within layouts/application (9.5ms)
1038
+ Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms)
1039
+
1040
+
1041
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1042
+ Served asset /application.css - 304 Not Modified (0ms)
1043
+
1044
+
1045
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1046
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1047
+
1048
+
1049
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1050
+ Served asset /users.css - 304 Not Modified (0ms)
1051
+
1052
+
1053
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1054
+ Served asset /jquery.js - 304 Not Modified (0ms)
1055
+
1056
+
1057
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1058
+ Served asset /application.js - 304 Not Modified (0ms)
1059
+
1060
+
1061
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1062
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1063
+
1064
+
1065
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:40 +0900
1066
+ Served asset /users.js - 304 Not Modified (0ms)
1067
+
1068
+
1069
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1070
+ Processing by UsersController#create as HTML
1071
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
1072
+ Rendered users/_form.html.erb (3.3ms)
1073
+ Rendered users/new.html.erb within layouts/application (3.9ms)
1074
+ Completed 200 OK in 15ms (Views: 8.2ms | ActiveRecord: 0.2ms)
1075
+
1076
+
1077
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1078
+ Served asset /application.css - 304 Not Modified (0ms)
1079
+
1080
+
1081
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1082
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1083
+
1084
+
1085
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1086
+ Served asset /users.css - 304 Not Modified (0ms)
1087
+
1088
+
1089
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1090
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1091
+
1092
+
1093
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1094
+ Served asset /jquery.js - 304 Not Modified (0ms)
1095
+
1096
+
1097
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1098
+ Served asset /application.js - 304 Not Modified (0ms)
1099
+
1100
+
1101
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:42 +0900
1102
+ Served asset /users.js - 304 Not Modified (0ms)
1103
+
1104
+
1105
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1106
+ Processing by UsersController#create as HTML
1107
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"ヒラガナ", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
1108
+ Rendered users/_form.html.erb (3.4ms)
1109
+ Rendered users/new.html.erb within layouts/application (4.2ms)
1110
+ Completed 200 OK in 16ms (Views: 9.1ms | ActiveRecord: 0.1ms)
1111
+
1112
+
1113
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1114
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1115
+
1116
+
1117
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1118
+ Served asset /application.css - 304 Not Modified (0ms)
1119
+
1120
+
1121
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1122
+ Served asset /users.css - 304 Not Modified (0ms)
1123
+
1124
+
1125
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1126
+ Served asset /jquery.js - 304 Not Modified (0ms)
1127
+
1128
+
1129
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1130
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1131
+
1132
+
1133
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1134
+ Served asset /users.js - 304 Not Modified (0ms)
1135
+
1136
+
1137
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:44:50 +0900
1138
+ Served asset /application.js - 304 Not Modified (0ms)
1139
+
1140
+
1141
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1142
+ Processing by UsersController#create as HTML
1143
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"ヒラガナ", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
1144
+ Rendered users/_form.html.erb (3.1ms)
1145
+ Rendered users/new.html.erb within layouts/application (3.7ms)
1146
+ Completed 200 OK in 34ms (Views: 7.8ms | ActiveRecord: 0.2ms)
1147
+
1148
+
1149
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1150
+ Served asset /application.css - 304 Not Modified (0ms)
1151
+
1152
+
1153
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1154
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1155
+
1156
+
1157
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1158
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1159
+
1160
+
1161
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1162
+ Served asset /users.js - 304 Not Modified (0ms)
1163
+
1164
+
1165
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1166
+ Served asset /jquery.js - 304 Not Modified (0ms)
1167
+
1168
+
1169
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1170
+ Served asset /users.css - 304 Not Modified (0ms)
1171
+
1172
+
1173
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:10 +0900
1174
+ Served asset /application.js - 304 Not Modified (0ms)
1175
+
1176
+
1177
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1178
+ Processing by UsersController#create as HTML
1179
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"", "name_kana"=>"", "name_halfkana"=>"", "name_hiragana"=>""}, "commit"=>"Create User"}
1180
+ SQL (4.1ms) INSERT INTO "users" ("created_at", "name", "name_halfkana", "name_hiragana", "name_kana", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 08 Jun 2012 03:45:14 UTC +00:00], ["name", ""], ["name_halfkana", ""], ["name_hiragana", ""], ["name_kana", ""], ["updated_at", Fri, 08 Jun 2012 03:45:14 UTC +00:00]]
1181
+ Redirected to http://localhost:3000/users/4
1182
+ Completed 302 Found in 143ms
1183
+
1184
+
1185
+ Started GET "/users/4" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1186
+ Processing by UsersController#show as HTML
1187
+ Parameters: {"id"=>"4"}
1188
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
1189
+ Rendered users/show.html.erb within layouts/application (6.5ms)
1190
+ Completed 200 OK in 33ms (Views: 11.4ms | ActiveRecord: 0.6ms)
1191
+
1192
+
1193
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1194
+ Served asset /application.css - 304 Not Modified (0ms)
1195
+
1196
+
1197
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1198
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1199
+
1200
+
1201
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1202
+ Served asset /jquery.js - 304 Not Modified (0ms)
1203
+
1204
+
1205
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1206
+ Served asset /users.css - 304 Not Modified (0ms)
1207
+
1208
+
1209
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1210
+ Served asset /users.js - 304 Not Modified (0ms)
1211
+
1212
+
1213
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1214
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1215
+
1216
+
1217
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:14 +0900
1218
+ Served asset /application.js - 304 Not Modified (0ms)
1219
+
1220
+
1221
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1222
+ Processing by UsersController#index as HTML
1223
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1224
+ Rendered users/index.html.erb within layouts/application (6.8ms)
1225
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.3ms)
1226
+
1227
+
1228
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1229
+ Served asset /application.css - 304 Not Modified (0ms)
1230
+
1231
+
1232
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1233
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1234
+
1235
+
1236
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1237
+ Served asset /jquery.js - 304 Not Modified (0ms)
1238
+
1239
+
1240
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1241
+ Served asset /users.css - 304 Not Modified (0ms)
1242
+
1243
+
1244
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1245
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1246
+
1247
+
1248
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1249
+ Served asset /users.js - 304 Not Modified (0ms)
1250
+
1251
+
1252
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:16 +0900
1253
+ Served asset /application.js - 304 Not Modified (0ms)
1254
+
1255
+
1256
+ Started DELETE "/users/4" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1257
+ Processing by UsersController#destroy as HTML
1258
+ Parameters: {"authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "id"=>"4"}
1259
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
1260
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1261
+ Redirected to http://localhost:3000/users
1262
+ Completed 302 Found in 131ms
1263
+
1264
+
1265
+ Started GET "/users" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1266
+ Processing by UsersController#index as HTML
1267
+ User Load (0.1ms) SELECT "users".* FROM "users"
1268
+ Rendered users/index.html.erb within layouts/application (0.3ms)
1269
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1270
+
1271
+
1272
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1273
+ Served asset /application.css - 304 Not Modified (0ms)
1274
+
1275
+
1276
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1277
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1278
+
1279
+
1280
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1281
+ Served asset /users.css - 304 Not Modified (0ms)
1282
+
1283
+
1284
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1285
+ Served asset /users.js - 304 Not Modified (0ms)
1286
+
1287
+
1288
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1289
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1290
+
1291
+
1292
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1293
+ Served asset /application.js - 304 Not Modified (0ms)
1294
+
1295
+
1296
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:19 +0900
1297
+ Served asset /jquery.js - 304 Not Modified (0ms)
1298
+
1299
+
1300
+ Started GET "/users/new" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1301
+ Processing by UsersController#new as HTML
1302
+ Rendered users/_form.html.erb (8.5ms)
1303
+ Rendered users/new.html.erb within layouts/application (9.1ms)
1304
+ Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms)
1305
+
1306
+
1307
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1308
+ Served asset /users.css - 304 Not Modified (0ms)
1309
+
1310
+
1311
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1312
+ Served asset /jquery.js - 304 Not Modified (0ms)
1313
+
1314
+
1315
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1316
+ Served asset /application.css - 304 Not Modified (0ms)
1317
+
1318
+
1319
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1320
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1321
+
1322
+
1323
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1324
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1325
+
1326
+
1327
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1328
+ Served asset /users.js - 304 Not Modified (0ms)
1329
+
1330
+
1331
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:20 +0900
1332
+ Served asset /application.js - 304 Not Modified (0ms)
1333
+
1334
+
1335
+ Started POST "/users" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1336
+ Processing by UsersController#create as HTML
1337
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"山村", "name_halfkana"=>"サンソン", "name_hiragana"=>"さんそん"}, "commit"=>"Create User"}
1338
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "name_halfkana", "name_hiragana", "name_kana", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 08 Jun 2012 03:45:52 UTC +00:00], ["name", "Horacio"], ["name_halfkana", "サンソン"], ["name_hiragana", "さんそん"], ["name_kana", "山村"], ["updated_at", Fri, 08 Jun 2012 03:45:52 UTC +00:00]]
1339
+ Redirected to http://localhost:3000/users/5
1340
+ Completed 302 Found in 187ms
1341
+
1342
+
1343
+ Started GET "/users/5" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1344
+ Processing by UsersController#show as HTML
1345
+ Parameters: {"id"=>"5"}
1346
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1347
+ Rendered users/show.html.erb within layouts/application (5.8ms)
1348
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.3ms)
1349
+
1350
+
1351
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1352
+ Served asset /application.css - 304 Not Modified (0ms)
1353
+
1354
+
1355
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1356
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1357
+
1358
+
1359
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1360
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1361
+
1362
+
1363
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1364
+ Served asset /jquery.js - 304 Not Modified (0ms)
1365
+
1366
+
1367
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1368
+ Served asset /users.js - 304 Not Modified (0ms)
1369
+
1370
+
1371
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1372
+ Served asset /users.css - 304 Not Modified (0ms)
1373
+
1374
+
1375
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:52 +0900
1376
+ Served asset /application.js - 304 Not Modified (0ms)
1377
+
1378
+
1379
+ Started GET "/users/5/edit" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1380
+ Processing by UsersController#edit as HTML
1381
+ Parameters: {"id"=>"5"}
1382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1383
+ Rendered users/_form.html.erb (8.8ms)
1384
+ Rendered users/edit.html.erb within layouts/application (9.9ms)
1385
+ Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.3ms)
1386
+
1387
+
1388
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1389
+ Served asset /application.css - 304 Not Modified (0ms)
1390
+
1391
+
1392
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1393
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1394
+
1395
+
1396
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1397
+ Served asset /jquery.js - 304 Not Modified (0ms)
1398
+
1399
+
1400
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1401
+ Served asset /users.css - 304 Not Modified (0ms)
1402
+
1403
+
1404
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1405
+ Served asset /users.js - 304 Not Modified (0ms)
1406
+
1407
+
1408
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1409
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1410
+
1411
+
1412
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:45:55 +0900
1413
+ Served asset /application.js - 304 Not Modified (0ms)
1414
+
1415
+
1416
+ Started PUT "/users/5" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1417
+ Processing by UsersController#update as HTML
1418
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"山村", "name_halfkana"=>"サンソン", "name_hiragana"=>"さんソン"}, "commit"=>"Update User", "id"=>"5"}
1419
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1420
+ Rendered users/_form.html.erb (3.2ms)
1421
+ Rendered users/edit.html.erb within layouts/application (4.0ms)
1422
+ Completed 200 OK in 16ms (Views: 8.0ms | ActiveRecord: 0.3ms)
1423
+
1424
+
1425
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1426
+ Served asset /application.css - 304 Not Modified (0ms)
1427
+
1428
+
1429
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1430
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1431
+
1432
+
1433
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1434
+ Served asset /users.css - 304 Not Modified (0ms)
1435
+
1436
+
1437
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1438
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1439
+
1440
+
1441
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1442
+ Served asset /jquery.js - 304 Not Modified (0ms)
1443
+
1444
+
1445
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1446
+ Served asset /users.js - 304 Not Modified (0ms)
1447
+
1448
+
1449
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 12:46:02 +0900
1450
+ Served asset /application.js - 304 Not Modified (0ms)
1451
+
1452
+
1453
+ Started PUT "/users/5" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1454
+ Processing by UsersController#update as HTML
1455
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"山村", "name_halfkana"=>"サンソン", "name_hiragana"=>"さんソン"}, "commit"=>"Update User", "id"=>"5"}
1456
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1457
+ Rendered users/_form.html.erb (3.1ms)
1458
+ Rendered users/edit.html.erb within layouts/application (3.9ms)
1459
+ Completed 200 OK in 15ms (Views: 7.9ms | ActiveRecord: 0.3ms)
1460
+
1461
+
1462
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1463
+ Served asset /application.css - 304 Not Modified (0ms)
1464
+
1465
+
1466
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1467
+ Served asset /users.css - 304 Not Modified (0ms)
1468
+
1469
+
1470
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1471
+ Served asset /jquery.js - 304 Not Modified (0ms)
1472
+
1473
+
1474
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1475
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1476
+
1477
+
1478
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1479
+ Served asset /users.js - 304 Not Modified (0ms)
1480
+
1481
+
1482
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1483
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1484
+
1485
+
1486
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:06 +0900
1487
+ Served asset /application.js - 304 Not Modified (0ms)
1488
+
1489
+
1490
+ Started PUT "/users/5" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1491
+ Processing by UsersController#update as HTML
1492
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"91zDhqqTCnjdJZ6kZt9jv2colchY1rhhcQNd0gMdS8k=", "user"=>{"name"=>"Horacio", "name_kana"=>"山村", "name_halfkana"=>"サンソン", "name_hiragana"=>"さんそん"}, "commit"=>"Update User", "id"=>"5"}
1493
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1494
+ Redirected to http://localhost:3000/users/5
1495
+ Completed 302 Found in 8ms
1496
+
1497
+
1498
+ Started GET "/users/5" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1499
+ Processing by UsersController#show as HTML
1500
+ Parameters: {"id"=>"5"}
1501
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1502
+ Rendered users/show.html.erb within layouts/application (6.2ms)
1503
+ Completed 200 OK in 14ms (Views: 11.7ms | ActiveRecord: 0.6ms)
1504
+
1505
+
1506
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1507
+ Served asset /application.css - 304 Not Modified (0ms)
1508
+
1509
+
1510
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1511
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1512
+
1513
+
1514
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1515
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1516
+
1517
+
1518
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1519
+ Served asset /jquery.js - 304 Not Modified (0ms)
1520
+
1521
+
1522
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1523
+ Served asset /users.css - 304 Not Modified (0ms)
1524
+
1525
+
1526
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1527
+ Served asset /users.js - 304 Not Modified (0ms)
1528
+
1529
+
1530
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:16 +0900
1531
+ Served asset /application.js - 304 Not Modified (0ms)
1532
+
1533
+
1534
+ Started GET "/users/5/edit" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1535
+ Processing by UsersController#edit as HTML
1536
+ Parameters: {"id"=>"5"}
1537
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1538
+ Rendered users/_form.html.erb (8.0ms)
1539
+ Rendered users/edit.html.erb within layouts/application (8.8ms)
1540
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.3ms)
1541
+
1542
+
1543
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1544
+ Served asset /application.css - 304 Not Modified (0ms)
1545
+
1546
+
1547
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1548
+ Served asset /users.css - 304 Not Modified (0ms)
1549
+
1550
+
1551
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1552
+ Served asset /jquery.js - 304 Not Modified (0ms)
1553
+
1554
+
1555
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1556
+ Served asset /scaffold.css - 304 Not Modified (0ms)
1557
+
1558
+
1559
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1560
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1561
+
1562
+
1563
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1564
+ Served asset /application.js - 304 Not Modified (0ms)
1565
+
1566
+
1567
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-06-08 15:00:20 +0900
1568
+ Served asset /users.js - 304 Not Modified (0ms)
1569
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1570
+  (0.2ms) select sqlite_version(*)
1571
+  (160.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "name_kana" varchar(255), "name_halfkana" varchar(255), "name_hiragana" varchar(255), "created_at" datetime, "updated_at" datetime) 
1572
+  (108.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1573
+  (0.0ms) PRAGMA index_list("schema_migrations")
1574
+  (108.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1575
+  (0.1ms) SELECT version FROM "schema_migrations"
1576
+  (108.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120608021810')
1577
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1578
+  (0.1ms) select sqlite_version(*)
1579
+  (121.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "name_kana" varchar(255), "name_halfkana" varchar(255), "name_hiragana" varchar(255), "created_at" datetime, "updated_at" datetime) 
1580
+  (108.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1581
+  (0.0ms) PRAGMA index_list("schema_migrations")
1582
+  (108.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1583
+  (0.1ms) SELECT version FROM "schema_migrations"
1584
+  (108.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120608021810')