phonelib 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +137 -0
  3. data/Rakefile +36 -0
  4. data/data/PhoneNumberMetaData.xml +25515 -0
  5. data/data/phone_data.yml +9209 -0
  6. data/lib/phonelib/core.rb +86 -0
  7. data/lib/phonelib/phone.rb +166 -0
  8. data/lib/phonelib/validators.rb +47 -0
  9. data/lib/phonelib/version.rb +3 -0
  10. data/lib/phonelib.rb +14 -0
  11. data/lib/tasks/phonelib_tasks.rake +69 -0
  12. data/test/dummy/README.rdoc +261 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +15 -0
  15. data/test/dummy/app/assets/javascripts/phones.js +2 -0
  16. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/test/dummy/app/assets/stylesheets/phones.css +4 -0
  18. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  19. data/test/dummy/app/controllers/application_controller.rb +3 -0
  20. data/test/dummy/app/controllers/phones_controller.rb +83 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/helpers/phones_helper.rb +2 -0
  23. data/test/dummy/app/models/phone.rb +6 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/app/views/phones/_form.html.erb +25 -0
  26. data/test/dummy/app/views/phones/edit.html.erb +6 -0
  27. data/test/dummy/app/views/phones/index.html.erb +25 -0
  28. data/test/dummy/app/views/phones/new.html.erb +5 -0
  29. data/test/dummy/app/views/phones/show.html.erb +14 -0
  30. data/test/dummy/config/application.rb +59 -0
  31. data/test/dummy/config/boot.rb +10 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +37 -0
  35. data/test/dummy/config/environments/production.rb +67 -0
  36. data/test/dummy/config/environments/test.rb +37 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/inflections.rb +15 -0
  39. data/test/dummy/config/initializers/mime_types.rb +5 -0
  40. data/test/dummy/config/initializers/secret_token.rb +7 -0
  41. data/test/dummy/config/initializers/session_store.rb +8 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/en.yml +5 -0
  44. data/test/dummy/config/routes.rb +60 -0
  45. data/test/dummy/config.ru +4 -0
  46. data/test/dummy/db/development.sqlite3 +0 -0
  47. data/test/dummy/db/migrate/20130121173847_create_phones.rb +9 -0
  48. data/test/dummy/db/migrate/20130122075331_add_possible_number_to_phone.rb +5 -0
  49. data/test/dummy/db/schema.rb +23 -0
  50. data/test/dummy/db/test.sqlite3 +0 -0
  51. data/test/dummy/log/development.log +976 -0
  52. data/test/dummy/log/test.log +4627 -0
  53. data/test/dummy/public/404.html +26 -0
  54. data/test/dummy/public/422.html +26 -0
  55. data/test/dummy/public/500.html +25 -0
  56. data/test/dummy/public/favicon.ico +0 -0
  57. data/test/dummy/script/rails +6 -0
  58. data/test/dummy/test/fixtures/phones.yml +16 -0
  59. data/test/dummy/test/functional/phones_controller_test.rb +50 -0
  60. data/test/dummy/test/unit/helpers/phones_helper_test.rb +4 -0
  61. data/test/dummy/test/unit/phone_test.rb +47 -0
  62. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  63. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  64. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  65. data/test/dummy/tmp/cache/assets/CF2/1D0/sprockets%2F0c27dcea623d22c007e33b8bf5301181 +0 -0
  66. data/test/dummy/tmp/cache/assets/D04/B50/sprockets%2F46c36c6aa77b26dddc3117542d006b94 +0 -0
  67. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  68. data/test/dummy/tmp/cache/assets/D46/C40/sprockets%2F9b88128dae7c1e6c7b28bcf197057c21 +0 -0
  69. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  70. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  71. data/test/dummy/tmp/cache/assets/D6D/E60/sprockets%2F1e022b8d5f5e26ebefd84c611bb56952 +0 -0
  72. data/test/dummy/tmp/cache/assets/D86/1B0/sprockets%2F5525f793871e81fb2bc8ff6dc05d7d8f +0 -0
  73. data/test/dummy/tmp/cache/assets/D8B/9D0/sprockets%2F017fa706d8e37400eafdda73e151d0bc +0 -0
  74. data/test/dummy/tmp/cache/assets/DD6/070/sprockets%2F2c9fb78e23cbc06765e705f8dfc6abe1 +0 -0
  75. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  76. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  77. data/test/dummy/tmp/cache/assets/E57/9D0/sprockets%2Fdc6481f3cacaff37934cae4aa8e0ecb4 +0 -0
  78. data/test/phonelib_test.rb +67 -0
  79. data/test/test_helper.rb +17 -0
  80. metadata +247 -0
@@ -0,0 +1,976 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+
5
+
6
+ Started GET "/" for 127.0.0.1 at 2013-01-21 19:40:11 +0200
7
+ Connecting to database specified by database.yml
8
+
9
+ ActionController::RoutingError (No route matches [GET] "/"):
10
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
12
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
13
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
14
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
16
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
17
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
18
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
19
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
20
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
21
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
22
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
23
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
24
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
25
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
26
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
27
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
28
+
29
+
30
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (37.8ms)
31
+
32
+
33
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:40:36 +0200
34
+
35
+ ArgumentError (Unknown validator: 'PhoneValidator'):
36
+ app/models/phone.rb:4:in `<class:Phone>'
37
+ app/models/phone.rb:1:in `<top (required)>'
38
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
39
+
40
+
41
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
42
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.5ms)
43
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.4ms)
44
+
45
+
46
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:41:02 +0200
47
+
48
+ ArgumentError (Unknown validator: 'PhoneValidator'):
49
+ app/models/phone.rb:5:in `<class:Phone>'
50
+ app/models/phone.rb:2:in `<top (required)>'
51
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
52
+
53
+
54
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
55
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
56
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.9ms)
57
+
58
+
59
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:41:27 +0200
60
+ Connecting to database specified by database.yml
61
+
62
+ ArgumentError (Unknown validator: 'PhoneValidator'):
63
+ app/models/phone.rb:5:in `<class:Phone>'
64
+ app/models/phone.rb:2:in `<top (required)>'
65
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
66
+
67
+
68
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
69
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.3ms)
70
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.2ms)
71
+
72
+
73
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:41:27 +0200
74
+
75
+ NoMethodError (undefined method `key?' for nil:NilClass):
76
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:36:in `visible_action?'
77
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:18:in `method_for_action'
78
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:14:in `method_for_action'
79
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:61:in `method_for_action'
80
+ actionpack (3.2.8) lib/abstract_controller/base.rb:115:in `process'
81
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
82
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
83
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
84
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
85
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
86
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
87
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
88
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
89
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
90
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
91
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
92
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
93
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
94
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
95
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
96
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
97
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
98
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
99
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
100
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
101
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
102
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
103
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
104
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2714639589700303063__call__2992415629966378876__callbacks'
105
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
106
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
107
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
108
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
109
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
110
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
111
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
112
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
113
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
114
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
115
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
116
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
117
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
118
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
119
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
120
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
121
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
122
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
123
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
124
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
125
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
126
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
127
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
128
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
129
+
130
+
131
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
132
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
133
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
134
+ Connecting to database specified by database.yml
135
+  (0.2ms) select sqlite_version(*)
136
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
137
+  (0.0ms) PRAGMA index_list("schema_migrations")
138
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
139
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
140
+ Migrating to CreatePhones (20130121173847)
141
+  (0.1ms) begin transaction
142
+  (0.5ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
143
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130121173847')
144
+  (1.7ms) commit transaction
145
+  (0.3ms) select sqlite_version(*)
146
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
147
+  (0.0ms) PRAGMA index_list("phones")
148
+
149
+
150
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:42:46 +0200
151
+ Connecting to database specified by database.yml
152
+
153
+ ArgumentError (Unknown validator: 'PhoneValidator'):
154
+ app/models/phone.rb:5:in `<class:Phone>'
155
+ app/models/phone.rb:2:in `<top (required)>'
156
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
157
+
158
+
159
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
160
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
161
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.4ms)
162
+
163
+
164
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:43:25 +0200
165
+
166
+ TypeError (wrong argument type Class (expected Module)):
167
+ app/models/phone.rb:4:in `include'
168
+ app/models/phone.rb:4:in `<class:Phone>'
169
+ app/models/phone.rb:1:in `<top (required)>'
170
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
171
+
172
+
173
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
174
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
175
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
176
+
177
+
178
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:44:06 +0200
179
+
180
+ ActionController::RoutingError (uninitialized constant Phone::PhoneValidator):
181
+ app/models/phone.rb:4:in `<class:Phone>'
182
+ app/models/phone.rb:1:in `<top (required)>'
183
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
184
+
185
+
186
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
187
+
188
+
189
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:44:15 +0200
190
+
191
+ TypeError (wrong argument type Class (expected Module)):
192
+ app/models/phone.rb:4:in `include'
193
+ app/models/phone.rb:4:in `<class:Phone>'
194
+ app/models/phone.rb:1:in `<top (required)>'
195
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
196
+
197
+
198
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
199
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
200
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (38.5ms)
201
+
202
+
203
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:45:11 +0200
204
+
205
+ TypeError (wrong argument type Class (expected Module)):
206
+ app/models/phone.rb:6:in `include'
207
+ app/models/phone.rb:6:in `<class:Phone>'
208
+ app/models/phone.rb:3:in `<top (required)>'
209
+ app/controllers/phones_controller.rb:1:in `<top (required)>'
210
+
211
+
212
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
213
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
214
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.3ms)
215
+
216
+
217
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:45:13 +0200
218
+
219
+ NoMethodError (undefined method `key?' for nil:NilClass):
220
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:36:in `visible_action?'
221
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:18:in `method_for_action'
222
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:14:in `method_for_action'
223
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:61:in `method_for_action'
224
+ actionpack (3.2.8) lib/abstract_controller/base.rb:115:in `process'
225
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
226
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
227
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
228
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
229
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
230
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
231
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
232
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
233
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
234
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
235
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
236
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
237
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
238
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
239
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
240
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
241
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
242
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
243
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
244
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
245
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
246
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
247
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
248
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2222861710604666620__call__1835404948743703635__callbacks'
249
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
250
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
251
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
252
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
253
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
254
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
255
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
256
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
257
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
258
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
259
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
260
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
261
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
262
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
263
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
264
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
265
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
266
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
267
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
268
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
269
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
270
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
271
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
272
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
273
+
274
+
275
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
276
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
277
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
278
+
279
+
280
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:45:15 +0200
281
+
282
+ NoMethodError (undefined method `key?' for nil:NilClass):
283
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:36:in `visible_action?'
284
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:18:in `method_for_action'
285
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:14:in `method_for_action'
286
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:61:in `method_for_action'
287
+ actionpack (3.2.8) lib/abstract_controller/base.rb:115:in `process'
288
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
289
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
290
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
291
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
292
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
293
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
294
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
295
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
296
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
297
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
298
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
299
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
300
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
301
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
302
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
303
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
304
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
305
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
306
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
307
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
308
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
309
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
310
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
311
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2222861710604666620__call__1835404948743703635__callbacks'
312
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
313
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
314
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
315
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
316
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
317
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
318
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
319
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
320
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
321
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
322
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
323
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
324
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
325
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
326
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
327
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
328
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
329
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
330
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
331
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
332
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
333
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
334
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
335
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
336
+
337
+
338
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
339
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
340
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
341
+
342
+
343
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 19:45:44 +0200
344
+
345
+ NoMethodError (undefined method `key?' for nil:NilClass):
346
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:36:in `visible_action?'
347
+ actionpack (3.2.8) lib/action_controller/metal/hide_actions.rb:18:in `method_for_action'
348
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:14:in `method_for_action'
349
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:61:in `method_for_action'
350
+ actionpack (3.2.8) lib/abstract_controller/base.rb:115:in `process'
351
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
352
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
353
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
354
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
355
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
356
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
357
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
358
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
359
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
360
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
361
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
362
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
363
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
364
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
365
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
366
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
367
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
368
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
369
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
370
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
371
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
372
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
373
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
374
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2222861710604666620__call__1835404948743703635__callbacks'
375
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
376
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
377
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
378
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
379
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
380
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
381
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
382
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
383
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
384
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
385
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
386
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
387
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
388
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
389
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
390
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
391
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
392
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
393
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
394
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
395
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
396
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
397
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
398
+ /usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
399
+
400
+
401
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
402
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
403
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.3ms)
404
+
405
+
406
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 20:01:28 +0200
407
+ Connecting to database specified by database.yml
408
+ Processing by PhonesController#index as HTML
409
+ Phone Load (0.1ms) SELECT "phones".* FROM "phones" 
410
+ Rendered phones/index.html.erb within layouts/application (5.1ms)
411
+ Compiled phones.css (0ms) (pid 68339)
412
+ Compiled scaffold.css (0ms) (pid 68339)
413
+ Compiled application.css (29ms) (pid 68339)
414
+ Compiled jquery.js (9ms) (pid 68339)
415
+ Compiled jquery_ujs.js (0ms) (pid 68339)
416
+ Compiled phones.js (0ms) (pid 68339)
417
+ Compiled application.js (109ms) (pid 68339)
418
+ Completed 200 OK in 333ms (Views: 260.7ms | ActiveRecord: 2.7ms)
419
+
420
+
421
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
422
+ Served asset /phones.css - 200 OK (8ms)
423
+
424
+
425
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
426
+ Served asset /jquery.js - 200 OK (7ms)
427
+
428
+
429
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
430
+ Served asset /application.css - 200 OK (26ms)
431
+
432
+
433
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
434
+ Served asset /application.js - 200 OK (7ms)
435
+
436
+
437
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
438
+ Served asset /scaffold.css - 200 OK (2ms)
439
+
440
+
441
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
442
+ Served asset /jquery_ujs.js - 200 OK (7ms)
443
+
444
+
445
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:01:29 +0200
446
+ Served asset /phones.js - 200 OK (2ms)
447
+ Connecting to database specified by database.yml
448
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
449
+  (0.3ms) select sqlite_version(*)
450
+  (2.3ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
451
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
452
+  (0.0ms) PRAGMA index_list("schema_migrations")
453
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
454
+  (0.1ms) SELECT version FROM "schema_migrations"
455
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
456
+ Connecting to database specified by database.yml
457
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
458
+  (0.3ms) select sqlite_version(*)
459
+  (2.9ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
460
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
461
+  (0.0ms) PRAGMA index_list("schema_migrations")
462
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
463
+  (0.2ms) SELECT version FROM "schema_migrations"
464
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
465
+ Connecting to database specified by database.yml
466
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
467
+  (0.3ms) select sqlite_version(*)
468
+  (4.4ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
469
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
470
+  (0.0ms) PRAGMA index_list("schema_migrations")
471
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
472
+  (0.1ms) SELECT version FROM "schema_migrations"
473
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
474
+ Connecting to database specified by database.yml
475
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
476
+  (0.3ms) select sqlite_version(*)
477
+  (4.4ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
478
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
479
+  (0.0ms) PRAGMA index_list("schema_migrations")
480
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
481
+  (0.1ms) SELECT version FROM "schema_migrations"
482
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
483
+ Connecting to database specified by database.yml
484
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
485
+  (0.3ms) select sqlite_version(*)
486
+  (4.2ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
487
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
488
+  (0.0ms) PRAGMA index_list("schema_migrations")
489
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
490
+  (0.1ms) SELECT version FROM "schema_migrations"
491
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
492
+
493
+
494
+ Started GET "/phones/new" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
495
+ Connecting to database specified by database.yml
496
+ Processing by PhonesController#new as HTML
497
+ Rendered phones/_form.html.erb (17.0ms)
498
+ Rendered phones/new.html.erb within layouts/application (28.6ms)
499
+ Completed 200 OK in 148ms (Views: 104.9ms | ActiveRecord: 2.8ms)
500
+
501
+
502
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
503
+ Served asset /scaffold.css - 304 Not Modified (2ms)
504
+
505
+
506
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
507
+ Served asset /phones.css - 304 Not Modified (3ms)
508
+
509
+
510
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
511
+ Served asset /jquery_ujs.js - 304 Not Modified (8ms)
512
+
513
+
514
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
515
+ Served asset /phones.js - 304 Not Modified (2ms)
516
+
517
+
518
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
519
+ Served asset /jquery.js - 304 Not Modified (7ms)
520
+
521
+
522
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
523
+ Served asset /application.css - 304 Not Modified (5ms)
524
+
525
+
526
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:17:59 +0200
527
+ Served asset /application.js - 304 Not Modified (10ms)
528
+
529
+
530
+ Started POST "/phones" for 127.0.0.1 at 2013-01-21 20:18:03 +0200
531
+ Processing by PhonesController#create as HTML
532
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "phone"=>{"number"=>"sdfsdfsfd"}, "commit"=>"Create Phone"}
533
+  (0.1ms) begin transaction
534
+  (0.1ms) rollback transaction
535
+ Completed 500 Internal Server Error in 3ms
536
+
537
+ Errno::ENOENT (No such file or directory - data/phone_data.yml):
538
+ app/controllers/phones_controller.rb:46:in `block in create'
539
+ app/controllers/phones_controller.rb:45:in `create'
540
+
541
+
542
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
543
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
544
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.6ms)
545
+ Connecting to database specified by database.yml
546
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
547
+  (0.4ms) select sqlite_version(*)
548
+  (5.5ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
549
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
550
+  (0.0ms) PRAGMA index_list("schema_migrations")
551
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
552
+  (0.1ms) SELECT version FROM "schema_migrations"
553
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
554
+
555
+
556
+ Started POST "/phones" for 127.0.0.1 at 2013-01-21 20:22:13 +0200
557
+ Connecting to database specified by database.yml
558
+ Processing by PhonesController#create as HTML
559
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "phone"=>{"number"=>"sdfsdfsfd"}, "commit"=>"Create Phone"}
560
+  (0.1ms) begin transaction
561
+  (0.1ms) rollback transaction
562
+ Rendered phones/_form.html.erb (62.5ms)
563
+ Rendered phones/new.html.erb within layouts/application (72.6ms)
564
+ Completed 200 OK in 1940ms (Views: 109.6ms | ActiveRecord: 2.9ms)
565
+
566
+
567
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
568
+ Served asset /jquery.js - 304 Not Modified (4ms)
569
+
570
+
571
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
572
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
573
+
574
+
575
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
576
+ Served asset /phones.css - 304 Not Modified (9ms)
577
+
578
+
579
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
580
+ Served asset /scaffold.css - 304 Not Modified (3ms)
581
+
582
+
583
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
584
+ Served asset /phones.js - 304 Not Modified (2ms)
585
+
586
+
587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
588
+ Served asset /application.js - 304 Not Modified (9ms)
589
+
590
+
591
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:16 +0200
592
+ Served asset /application.css - 304 Not Modified (7ms)
593
+
594
+
595
+ Started POST "/phones" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
596
+ Processing by PhonesController#create as HTML
597
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "phone"=>{"number"=>"972541234567"}, "commit"=>"Create Phone"}
598
+  (0.1ms) begin transaction
599
+ SQL (10.4ms) INSERT INTO "phones" ("created_at", "number", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 21 Jan 2013 18:22:29 UTC +00:00], ["number", "972541234567"], ["updated_at", Mon, 21 Jan 2013 18:22:29 UTC +00:00]]
600
+  (2.2ms) commit transaction
601
+ Redirected to http://localhost:3000/phones/1
602
+ Completed 302 Found in 20ms (ActiveRecord: 12.7ms)
603
+
604
+
605
+ Started GET "/phones/1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
606
+ Processing by PhonesController#show as HTML
607
+ Parameters: {"id"=>"1"}
608
+ Phone Load (0.4ms) SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "1"]]
609
+ Rendered phones/show.html.erb within layouts/application (2.2ms)
610
+ Completed 200 OK in 14ms (Views: 10.2ms | ActiveRecord: 0.4ms)
611
+
612
+
613
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
614
+ Served asset /application.css - 304 Not Modified (0ms)
615
+
616
+
617
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
618
+ Served asset /phones.css - 304 Not Modified (0ms)
619
+
620
+
621
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
622
+ Served asset /jquery.js - 304 Not Modified (0ms)
623
+
624
+
625
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
626
+ Served asset /scaffold.css - 304 Not Modified (0ms)
627
+
628
+
629
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
630
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
631
+
632
+
633
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
634
+ Served asset /phones.js - 304 Not Modified (0ms)
635
+
636
+
637
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:29 +0200
638
+ Served asset /application.js - 304 Not Modified (0ms)
639
+
640
+
641
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 20:22:33 +0200
642
+ Processing by PhonesController#index as HTML
643
+ Phone Load (0.2ms) SELECT "phones".* FROM "phones" 
644
+ Rendered phones/index.html.erb within layouts/application (3.3ms)
645
+ Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.2ms)
646
+
647
+
648
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:33 +0200
649
+ Served asset /application.css - 304 Not Modified (0ms)
650
+
651
+
652
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:33 +0200
653
+ Served asset /jquery.js - 304 Not Modified (0ms)
654
+
655
+
656
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:33 +0200
657
+ Served asset /phones.css - 304 Not Modified (0ms)
658
+
659
+
660
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:34 +0200
661
+ Served asset /phones.js - 304 Not Modified (0ms)
662
+
663
+
664
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:34 +0200
665
+ Served asset /scaffold.css - 304 Not Modified (0ms)
666
+
667
+
668
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:34 +0200
669
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
670
+
671
+
672
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:34 +0200
673
+ Served asset /application.js - 304 Not Modified (0ms)
674
+
675
+
676
+ Started GET "/phones/new" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
677
+ Processing by PhonesController#new as HTML
678
+ Rendered phones/_form.html.erb (2.8ms)
679
+ Rendered phones/new.html.erb within layouts/application (4.0ms)
680
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
681
+
682
+
683
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
684
+ Served asset /application.css - 304 Not Modified (47ms)
685
+
686
+
687
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
688
+ Served asset /phones.css - 304 Not Modified (0ms)
689
+
690
+
691
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
692
+ Served asset /application.js - 304 Not Modified (0ms)
693
+
694
+
695
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
696
+ Served asset /scaffold.css - 304 Not Modified (0ms)
697
+
698
+
699
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
700
+ Served asset /jquery.js - 304 Not Modified (0ms)
701
+
702
+
703
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:37 +0200
704
+ Served asset /phones.js - 304 Not Modified (0ms)
705
+
706
+
707
+ Started POST "/phones" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
708
+ Processing by PhonesController#create as HTML
709
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "phone"=>{"number"=>"dfgdfg23423423434"}, "commit"=>"Create Phone"}
710
+  (0.1ms) begin transaction
711
+ SQL (0.6ms) INSERT INTO "phones" ("created_at", "number", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 21 Jan 2013 18:22:44 UTC +00:00], ["number", "dfgdfg23423423434"], ["updated_at", Mon, 21 Jan 2013 18:22:44 UTC +00:00]]
712
+  (1.9ms) commit transaction
713
+ Redirected to http://localhost:3000/phones/2
714
+ Completed 302 Found in 8ms (ActiveRecord: 2.7ms)
715
+
716
+
717
+ Started GET "/phones/2" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
718
+ Processing by PhonesController#show as HTML
719
+ Parameters: {"id"=>"2"}
720
+ Phone Load (0.2ms) SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "2"]]
721
+ Rendered phones/show.html.erb within layouts/application (1.0ms)
722
+ Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms)
723
+
724
+
725
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
726
+ Served asset /jquery_ujs.js - 200 OK (0ms)
727
+
728
+
729
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
730
+ Served asset /application.js - 304 Not Modified (0ms)
731
+
732
+
733
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
734
+ Served asset /phones.css - 304 Not Modified (0ms)
735
+
736
+
737
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
738
+ Served asset /scaffold.css - 304 Not Modified (0ms)
739
+
740
+
741
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
742
+ Served asset /application.css - 304 Not Modified (0ms)
743
+
744
+
745
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
746
+ Served asset /jquery.js - 304 Not Modified (0ms)
747
+
748
+
749
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:44 +0200
750
+ Served asset /phones.js - 304 Not Modified (0ms)
751
+
752
+
753
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
754
+ Processing by PhonesController#index as HTML
755
+ Phone Load (0.2ms) SELECT "phones".* FROM "phones"
756
+ Rendered phones/index.html.erb within layouts/application (3.2ms)
757
+ Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.2ms)
758
+
759
+
760
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
761
+ Served asset /application.css - 304 Not Modified (0ms)
762
+
763
+
764
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
765
+ Served asset /phones.css - 304 Not Modified (0ms)
766
+
767
+
768
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
769
+ Served asset /application.js - 304 Not Modified (0ms)
770
+
771
+
772
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
773
+ Served asset /jquery.js - 304 Not Modified (0ms)
774
+
775
+
776
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
777
+ Served asset /phones.js - 304 Not Modified (0ms)
778
+
779
+
780
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:22:47 +0200
781
+ Served asset /scaffold.css - 304 Not Modified (0ms)
782
+
783
+
784
+ Started DELETE "/phones/2" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
785
+ Processing by PhonesController#destroy as HTML
786
+ Parameters: {"authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "id"=>"2"}
787
+ Phone Load (0.2ms) SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "2"]]
788
+  (0.1ms) begin transaction
789
+ SQL (0.4ms) DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 2]]
790
+  (1.5ms) commit transaction
791
+ Redirected to http://localhost:3000/phones
792
+ Completed 302 Found in 7ms (ActiveRecord: 2.2ms)
793
+
794
+
795
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
796
+ Processing by PhonesController#index as HTML
797
+ Phone Load (0.3ms) SELECT "phones".* FROM "phones" 
798
+ Rendered phones/index.html.erb within layouts/application (2.1ms)
799
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.3ms)
800
+
801
+
802
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
803
+ Served asset /application.css - 304 Not Modified (0ms)
804
+
805
+
806
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
807
+ Served asset /phones.js - 304 Not Modified (0ms)
808
+
809
+
810
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
811
+ Served asset /jquery.js - 304 Not Modified (0ms)
812
+
813
+
814
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
815
+ Served asset /scaffold.css - 304 Not Modified (0ms)
816
+
817
+
818
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
819
+ Served asset /application.js - 304 Not Modified (0ms)
820
+
821
+
822
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:05 +0200
823
+ Served asset /phones.css - 304 Not Modified (2ms)
824
+
825
+
826
+ Started DELETE "/phones/1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
827
+ Processing by PhonesController#destroy as HTML
828
+ Parameters: {"authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "id"=>"1"}
829
+ Phone Load (0.2ms) SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "1"]]
830
+  (0.1ms) begin transaction
831
+ SQL (0.3ms) DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 1]]
832
+  (3.1ms) commit transaction
833
+ Redirected to http://localhost:3000/phones
834
+ Completed 302 Found in 7ms (ActiveRecord: 3.6ms)
835
+
836
+
837
+ Started GET "/phones" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
838
+ Processing by PhonesController#index as HTML
839
+ Phone Load (0.2ms) SELECT "phones".* FROM "phones"
840
+ Rendered phones/index.html.erb within layouts/application (0.5ms)
841
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.2ms)
842
+
843
+
844
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
845
+ Served asset /phones.css - 304 Not Modified (0ms)
846
+
847
+
848
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
849
+ Served asset /scaffold.css - 304 Not Modified (0ms)
850
+
851
+
852
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
853
+ Served asset /jquery.js - 304 Not Modified (0ms)
854
+
855
+
856
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
857
+ Served asset /phones.js - 304 Not Modified (0ms)
858
+
859
+
860
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
861
+ Served asset /application.js - 304 Not Modified (0ms)
862
+
863
+
864
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:08 +0200
865
+ Served asset /application.css - 304 Not Modified (0ms)
866
+
867
+
868
+ Started GET "/phones/new" for 127.0.0.1 at 2013-01-21 20:23:10 +0200
869
+ Processing by PhonesController#new as HTML
870
+ Rendered phones/_form.html.erb (2.8ms)
871
+ Rendered phones/new.html.erb within layouts/application (4.0ms)
872
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
873
+
874
+
875
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:10 +0200
876
+ Served asset /application.css - 304 Not Modified (0ms)
877
+
878
+
879
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:10 +0200
880
+ Served asset /application.js - 304 Not Modified (0ms)
881
+
882
+
883
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:11 +0200
884
+ Served asset /jquery.js - 304 Not Modified (0ms)
885
+
886
+
887
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:11 +0200
888
+ Served asset /phones.css - 304 Not Modified (0ms)
889
+
890
+
891
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:11 +0200
892
+ Served asset /scaffold.css - 304 Not Modified (0ms)
893
+
894
+
895
+ Started POST "/phones" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
896
+ Processing by PhonesController#create as HTML
897
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"juy+71mIBytVSnXymhY6ThKZetKorLx+yfYMGW7+xy4=", "phone"=>{"number"=>"werwer"}, "commit"=>"Create Phone"}
898
+  (0.1ms) begin transaction
899
+  (0.1ms) rollback transaction
900
+ Rendered phones/_form.html.erb (3.9ms)
901
+ Rendered phones/new.html.erb within layouts/application (5.2ms)
902
+ Completed 200 OK in 15ms (Views: 12.6ms | ActiveRecord: 0.2ms)
903
+
904
+
905
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
906
+ Served asset /application.css - 304 Not Modified (0ms)
907
+
908
+
909
+ Started GET "/assets/phones.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
910
+ Served asset /phones.js - 200 OK (0ms)
911
+
912
+
913
+ Started GET "/assets/phones.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
914
+ Served asset /phones.css - 304 Not Modified (0ms)
915
+
916
+
917
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
918
+ Served asset /scaffold.css - 304 Not Modified (0ms)
919
+
920
+
921
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
922
+ Served asset /application.js - 304 Not Modified (0ms)
923
+
924
+
925
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-21 20:23:13 +0200
926
+ Served asset /jquery.js - 304 Not Modified (0ms)
927
+ Connecting to database specified by database.yml
928
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
929
+  (0.3ms) select sqlite_version(*)
930
+  (4.0ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
931
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
932
+  (0.0ms) PRAGMA index_list("schema_migrations")
933
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
934
+  (0.1ms) SELECT version FROM "schema_migrations"
935
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
936
+ Connecting to database specified by database.yml
937
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
938
+  (0.3ms) select sqlite_version(*)
939
+  (4.3ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
940
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
941
+  (0.0ms) PRAGMA index_list("schema_migrations")
942
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
943
+  (0.1ms) SELECT version FROM "schema_migrations"
944
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
945
+ Connecting to database specified by database.yml
946
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
947
+  (0.3ms) select sqlite_version(*)
948
+  (3.8ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
949
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
950
+  (0.0ms) PRAGMA index_list("schema_migrations")
951
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
952
+  (0.1ms) SELECT version FROM "schema_migrations"
953
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
954
+ Connecting to database specified by database.yml
955
+ Connecting to database specified by database.yml
956
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
957
+ Migrating to CreatePhones (20130121173847)
958
+ Migrating to AddPossibleNumberToPhone (20130122075331)
959
+  (0.1ms) select sqlite_version(*)
960
+  (0.1ms) begin transaction
961
+  (0.7ms) ALTER TABLE "phones" ADD "possible_number" varchar(255)
962
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130122075331')
963
+  (3.7ms) commit transaction
964
+  (0.4ms) select sqlite_version(*)
965
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
966
+  (0.0ms) PRAGMA index_list("phones")
967
+ Connecting to database specified by database.yml
968
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
969
+  (0.3ms) select sqlite_version(*)
970
+  (4.2ms) CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "possible_number" varchar(255)) 
971
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
972
+  (0.0ms) PRAGMA index_list("schema_migrations")
973
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
974
+  (0.1ms) SELECT version FROM "schema_migrations"
975
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122075331')
976
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')