jquery_mobile_rails 1.0b3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +45 -0
  3. data/Rakefile +37 -0
  4. data/lib/jquery_mobile_rails/engine.rb +4 -0
  5. data/lib/jquery_mobile_rails/version.rb +3 -0
  6. data/lib/jquery_mobile_rails.rb +4 -0
  7. data/lib/tasks/jquery_mobile_rails_tasks.rake +19 -0
  8. data/test/dummy/Rakefile +7 -0
  9. data/test/dummy/app/assets/javascripts/application.js +10 -0
  10. data/test/dummy/app/assets/javascripts/notes.js +2 -0
  11. data/test/dummy/app/assets/stylesheets/application.css +8 -0
  12. data/test/dummy/app/assets/stylesheets/notes.css +4 -0
  13. data/test/dummy/app/controllers/application_controller.rb +3 -0
  14. data/test/dummy/app/controllers/notes_controller.rb +83 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/helpers/notes_helper.rb +2 -0
  17. data/test/dummy/app/models/note.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +17 -0
  19. data/test/dummy/app/views/notes/_form.html.erb +27 -0
  20. data/test/dummy/app/views/notes/edit.html.erb +10 -0
  21. data/test/dummy/app/views/notes/index.html.erb +20 -0
  22. data/test/dummy/app/views/notes/new.html.erb +9 -0
  23. data/test/dummy/app/views/notes/show.html.erb +17 -0
  24. data/test/dummy/config/application.rb +45 -0
  25. data/test/dummy/config/boot.rb +10 -0
  26. data/test/dummy/config/database.yml +25 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +30 -0
  29. data/test/dummy/config/environments/production.rb +60 -0
  30. data/test/dummy/config/environments/test.rb +42 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/inflections.rb +10 -0
  33. data/test/dummy/config/initializers/mime_types.rb +5 -0
  34. data/test/dummy/config/initializers/secret_token.rb +7 -0
  35. data/test/dummy/config/initializers/session_store.rb +8 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/test/dummy/config/locales/en.yml +5 -0
  38. data/test/dummy/config/routes.rb +62 -0
  39. data/test/dummy/config.ru +4 -0
  40. data/test/dummy/db/development.sqlite3 +0 -0
  41. data/test/dummy/db/migrate/20110914151624_create_notes.rb +10 -0
  42. data/test/dummy/db/schema.rb +23 -0
  43. data/test/dummy/log/development.log +1190 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +26 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/test/fixtures/notes.yml +9 -0
  50. data/test/dummy/test/functional/notes_controller_test.rb +49 -0
  51. data/test/dummy/test/unit/helpers/notes_helper_test.rb +4 -0
  52. data/test/dummy/test/unit/note_test.rb +7 -0
  53. data/test/dummy/tmp/cache/assets/C60/CD0/sprockets%2F96395d25676c3e145f2c737f9b811253 +0 -0
  54. data/test/dummy/tmp/cache/assets/CBA/160/sprockets%2F77c904cba3582ef88315030f9a39d449 +0 -0
  55. data/test/dummy/tmp/cache/assets/CD8/2C0/sprockets%2F4505f85a8dc0311824ad596b46d0b1d8 +0 -0
  56. data/test/dummy/tmp/cache/assets/CDE/910/sprockets%2F8af59305547610b5be0e9e038bb58f21 +0 -0
  57. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  58. data/test/dummy/tmp/cache/assets/CF3/780/sprockets%2Fc2b4847962a06be1e379f195661ec98f +0 -0
  59. data/test/dummy/tmp/cache/assets/CF6/520/sprockets%2Fa68357de390392f99ff65d1864ecc053 +0 -0
  60. data/test/dummy/tmp/cache/assets/D06/130/sprockets%2F022e8fcf6020f9aed0922654e17df114 +0 -0
  61. data/test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4 +0 -0
  62. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  63. data/test/dummy/tmp/cache/assets/D38/020/sprockets%2F36d245d9ec1d3f0b6f16e493151cc72a +0 -0
  64. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  65. data/test/dummy/tmp/cache/assets/D72/4D0/sprockets%2Fe3eb326c1536a68947ef19c55baee1e2 +0 -0
  66. data/test/dummy/tmp/cache/assets/D81/6B0/sprockets%2Fcd078298b7a8b8507fdc38be4c95a7b6 +0 -0
  67. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  68. data/test/dummy/tmp/cache/assets/DD4/190/sprockets%2F6a00e5cca788babeb65b76d61f598dd4 +0 -0
  69. data/test/dummy/tmp/cache/assets/DDC/0B0/sprockets%2F63d8cfc5e184b372b7ec77cca69d4db7 +0 -0
  70. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  71. data/test/dummy/tmp/cache/assets/E26/080/sprockets%2F2bfebfc43c7345cc7c93d4cbc21eae63 +0 -0
  72. data/test/dummy/tmp/cache/assets/E5B/BE0/sprockets%2Fac9c282fedce5fe73313ade7e4cc0dc4 +0 -0
  73. data/test/jquery_mobile_rails_test.rb +7 -0
  74. data/test/test_helper.rb +10 -0
  75. data/vendor/assets/images/jquery-mobile/ajax-loader.png +0 -0
  76. data/vendor/assets/images/jquery-mobile/icon-search-black.png +0 -0
  77. data/vendor/assets/images/jquery-mobile/icons-18-black.png +0 -0
  78. data/vendor/assets/images/jquery-mobile/icons-18-white.png +0 -0
  79. data/vendor/assets/images/jquery-mobile/icons-36-black.png +0 -0
  80. data/vendor/assets/images/jquery-mobile/icons-36-white.png +0 -0
  81. data/vendor/assets/javascripts/jquery.mobile.js +6657 -0
  82. data/vendor/assets/javascripts/jquery.mobile.min.js +169 -0
  83. data/vendor/assets/stylesheets/jquery.mobile.css.erb +1699 -0
  84. data/vendor/assets/stylesheets/jquery.mobile.min.css.erb +8 -0
  85. metadata +221 -0
@@ -0,0 +1,1190 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateNotes (20110914151624)
7
+  (0.4ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime)
8
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110914151624')
9
+  (0.3ms) select sqlite_version(*)
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) PRAGMA index_list("notes")
12
+
13
+
14
+ Started GET "/" for 127.0.0.1 at 2011-09-14 12:19:26 -0300
15
+
16
+ ActionController::RoutingError (No route matches [GET] "/"):
17
+
18
+
19
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.0ms)
20
+
21
+
22
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:19:32 -0300
23
+ Processing by NotesController#index as HTML
24
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" 
25
+ Rendered notes/index.html.erb within layouts/application (1.2ms)
26
+ Compiled application.css (3ms) (pid 1004)
27
+ Compiled jquery.mobile.min.css (0ms) (pid 1004)
28
+ Compiled notes.css (0ms) (pid 1004)
29
+ Compiled scaffold.css (0ms) (pid 1004)
30
+ Completed 500 Internal Server Error in 57ms
31
+
32
+ ActionView::Template::Error (couldn't find file 'jquery'
33
+ (in /Users/tscolari/Projetos/jquery-mobile-rails/test/dummy/app/assets/javascripts/application.js:7)):
34
+ 3: <head>
35
+ 4: <title>Dummy</title>
36
+ 5: <%= stylesheet_link_tag "application" %>
37
+ 6: <%= javascript_include_tag "application" %>
38
+ 7: <%= csrf_meta_tags %>
39
+ 8: </head>
40
+ 9: <body>
41
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1672146837871472957_2186359720'
42
+ app/controllers/notes_controller.rb:7:in `index'
43
+
44
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
45
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
46
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
47
+
48
+
49
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:20:10 -0300
50
+ Processing by NotesController#index as HTML
51
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" 
52
+ Rendered notes/index.html.erb within layouts/application (35.1ms)
53
+ Compiled application.js (5ms) (pid 1020)
54
+ Compiled jquery.js (19ms) (pid 1020)
55
+ Compiled jquery_ujs.js (1ms) (pid 1020)
56
+ Compiled jquery.mobile.min.js (1ms) (pid 1020)
57
+ Compiled notes.js (0ms) (pid 1020)
58
+ Completed 200 OK in 132ms (Views: 131.2ms | ActiveRecord: 0.2ms)
59
+
60
+
61
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
62
+ Served asset /application.css - 200 OK (34ms)
63
+
64
+
65
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
66
+ Served asset /jquery.mobile.min.css - 200 OK (15ms)
67
+
68
+
69
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
70
+ Served asset /notes.css - 200 OK (7ms)
71
+
72
+
73
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
74
+ Served asset /scaffold.css - 200 OK (8ms)
75
+
76
+
77
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
78
+ Served asset /jquery.js - 200 OK (10ms)
79
+
80
+
81
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
82
+ Served asset /jquery_ujs.js - 200 OK (5ms)
83
+
84
+
85
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
86
+ Served asset /jquery.mobile.min.js - 200 OK (22ms)
87
+
88
+
89
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
90
+ Served asset /notes.js - 200 OK (38ms)
91
+
92
+
93
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
94
+ Served asset /application.js - 200 OK (32ms)
95
+
96
+
97
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:20:11 -0300
98
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
99
+
100
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
101
+
102
+
103
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
104
+
105
+
106
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
107
+ Processing by NotesController#index as HTML
108
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
109
+ Rendered notes/index.html.erb within layouts/application (0.6ms)
110
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.2ms)
111
+
112
+
113
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
114
+ Served asset /jquery.mobile.min.css - 304 Not Modified (0ms)
115
+
116
+
117
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
118
+ Served asset /notes.css - 304 Not Modified (0ms)
119
+
120
+
121
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
122
+ Served asset /application.css - 304 Not Modified (0ms)
123
+
124
+
125
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
126
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
127
+
128
+
129
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
130
+ Served asset /scaffold.css - 304 Not Modified (0ms)
131
+
132
+
133
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
134
+ Served asset /jquery.js - 304 Not Modified (0ms)
135
+
136
+
137
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
138
+ Served asset /jquery.mobile.min.js - 304 Not Modified (0ms)
139
+
140
+
141
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
142
+ Served asset /notes.js - 304 Not Modified (0ms)
143
+
144
+
145
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
146
+ Served asset /application.js - 304 Not Modified (0ms)
147
+
148
+
149
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:21:49 -0300
150
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
151
+
152
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
153
+
154
+
155
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
156
+
157
+
158
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
159
+ Processing by NotesController#index as HTML
160
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
161
+ Rendered notes/index.html.erb within layouts/application (0.6ms)
162
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms)
163
+
164
+
165
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
166
+ Served asset /notes.css - 200 OK (0ms)
167
+
168
+
169
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
170
+ Served asset /jquery.js - 200 OK (0ms)
171
+
172
+
173
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
174
+ Served asset /scaffold.css - 200 OK (0ms)
175
+
176
+
177
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
178
+ Served asset /application.css - 200 OK (0ms)
179
+
180
+
181
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
182
+ Served asset /jquery_ujs.js - 200 OK (0ms)
183
+
184
+
185
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
186
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
187
+
188
+
189
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
190
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
191
+
192
+
193
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
194
+ Served asset /notes.js - 200 OK (0ms)
195
+
196
+
197
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
198
+ Served asset /application.js - 200 OK (0ms)
199
+
200
+
201
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:22:49 -0300
202
+ Served asset /images/ajax-loader.png - 404 Not Found (33ms)
203
+
204
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
205
+
206
+
207
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
208
+
209
+
210
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
211
+ Processing by NotesController#index as HTML
212
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
213
+ Rendered notes/index.html.erb within layouts/application (1.2ms)
214
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.2ms)
215
+
216
+
217
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
218
+ Served asset /application.css - 200 OK (0ms)
219
+
220
+
221
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
222
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
223
+
224
+
225
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
226
+ Served asset /notes.css - 200 OK (0ms)
227
+
228
+
229
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
230
+ Served asset /scaffold.css - 200 OK (0ms)
231
+
232
+
233
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
234
+ Served asset /jquery.js - 200 OK (0ms)
235
+
236
+
237
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
238
+ Served asset /jquery_ujs.js - 200 OK (0ms)
239
+
240
+
241
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
242
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
243
+
244
+
245
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
246
+ Served asset /notes.js - 200 OK (0ms)
247
+
248
+
249
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
250
+ Served asset /application.js - 200 OK (0ms)
251
+
252
+
253
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:23:22 -0300
254
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
255
+
256
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
257
+
258
+
259
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
260
+
261
+
262
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
263
+ Processing by NotesController#index as HTML
264
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
265
+ Rendered notes/index.html.erb within layouts/application (1.1ms)
266
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms)
267
+
268
+
269
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
270
+ Served asset /application.css - 200 OK (0ms)
271
+
272
+
273
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
274
+ Served asset /notes.css - 200 OK (0ms)
275
+
276
+
277
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
278
+ Served asset /jquery_ujs.js - 200 OK (0ms)
279
+
280
+
281
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
282
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
283
+
284
+
285
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
286
+ Served asset /scaffold.css - 200 OK (0ms)
287
+
288
+
289
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
290
+ Served asset /jquery.js - 200 OK (0ms)
291
+
292
+
293
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
294
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
295
+
296
+
297
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
298
+ Served asset /notes.js - 200 OK (0ms)
299
+
300
+
301
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:23:29 -0300
302
+ Served asset /application.js - 200 OK (0ms)
303
+
304
+
305
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:23:30 -0300
306
+ Served asset /images/ajax-loader.png - 404 Not Found (3ms)
307
+
308
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
309
+
310
+
311
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
312
+
313
+
314
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
315
+ Processing by NotesController#index as HTML
316
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
317
+ Rendered notes/index.html.erb within layouts/application (1.1ms)
318
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.2ms)
319
+
320
+
321
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
322
+ Served asset /application.css - 200 OK (0ms)
323
+
324
+
325
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
326
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
327
+
328
+
329
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
330
+ Served asset /scaffold.css - 200 OK (0ms)
331
+
332
+
333
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
334
+ Served asset /notes.css - 200 OK (0ms)
335
+
336
+
337
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
338
+ Served asset /jquery.js - 200 OK (0ms)
339
+
340
+
341
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
342
+ Served asset /jquery_ujs.js - 200 OK (0ms)
343
+
344
+
345
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
346
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
347
+
348
+
349
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
350
+ Served asset /notes.js - 200 OK (0ms)
351
+
352
+
353
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
354
+ Served asset /application.js - 200 OK (0ms)
355
+
356
+
357
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:24:13 -0300
358
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
359
+
360
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
361
+
362
+
363
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
364
+
365
+
366
+ Started GET "/notes/new" for 127.0.0.1 at 2011-09-14 12:24:50 -0300
367
+ Processing by NotesController#new as HTML
368
+ Rendered notes/_form.html.erb (10.7ms)
369
+ Rendered notes/new.html.erb within layouts/application (31.5ms)
370
+ Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.3ms)
371
+
372
+
373
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
374
+ Processing by NotesController#index as HTML
375
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
376
+ Rendered notes/index.html.erb within layouts/application (1.1ms)
377
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.2ms)
378
+
379
+
380
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
381
+ Served asset /application.css - 200 OK (0ms)
382
+
383
+
384
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
385
+ Served asset /notes.css - 200 OK (0ms)
386
+
387
+
388
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
389
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
390
+
391
+
392
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
393
+ Served asset /scaffold.css - 200 OK (0ms)
394
+
395
+
396
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
397
+ Served asset /jquery_ujs.js - 200 OK (0ms)
398
+
399
+
400
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
401
+ Served asset /jquery.js - 200 OK (0ms)
402
+
403
+
404
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
405
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
406
+
407
+
408
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
409
+ Served asset /notes.js - 200 OK (0ms)
410
+
411
+
412
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
413
+ Served asset /application.js - 200 OK (3ms)
414
+
415
+
416
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:30:59 -0300
417
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
418
+
419
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
420
+
421
+
422
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
423
+
424
+
425
+ Started GET "/notes/new" for 127.0.0.1 at 2011-09-14 12:31:01 -0300
426
+ Processing by NotesController#new as HTML
427
+ Rendered notes/_form.html.erb (7.5ms)
428
+ Rendered notes/new.html.erb within layouts/application (8.6ms)
429
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms)
430
+
431
+
432
+ Started POST "/notes" for 127.0.0.1 at 2011-09-14 12:31:06 -0300
433
+ Processing by NotesController#create as HTML
434
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"FfAr2jOvxrjpzu1BsuI0o0JsZLfo3r64GR+A+e18Obg=", "note"=>{"title"=>"teste", "body"=>"asd sad sa dsds dsadassad dsdas dsadsa ads "}, "commit"=>"Create Note"}
435
+ SQL (58.0ms) INSERT INTO "notes" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "asd sad sa dsds dsadassad dsdas dsadsa ads "], ["created_at", Wed, 14 Sep 2011 15:31:06 UTC +00:00], ["title", "teste"], ["updated_at", Wed, 14 Sep 2011 15:31:06 UTC +00:00]]
436
+ Redirected to http://0.0.0.0:3000/notes/1
437
+ Completed 302 Found in 68ms
438
+
439
+
440
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 12:31:06 -0300
441
+ Processing by NotesController#show as HTML
442
+ Parameters: {"id"=>"1"}
443
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
444
+ Rendered notes/show.html.erb within layouts/application (6.4ms)
445
+ Completed 200 OK in 17ms (Views: 13.3ms | ActiveRecord: 0.7ms)
446
+
447
+
448
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:31:12 -0300
449
+ Processing by NotesController#index as HTML
450
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
451
+ Rendered notes/index.html.erb within layouts/application (14.2ms)
452
+ Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.4ms)
453
+
454
+
455
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:31:12 -0300
456
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
457
+
458
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
459
+
460
+
461
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
462
+
463
+
464
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:31:55 -0300
465
+ Processing by NotesController#index as HTML
466
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
467
+ Rendered notes/index.html.erb within layouts/application (69.4ms)
468
+ Completed 500 Internal Server Error in 76ms
469
+
470
+ ActionView::Template::Error (undefined method `to' for #<#<Class:0x000001032f1468>:0x00000103278680>):
471
+ 8: <ul data-role="listview">
472
+ 9: <% @notes.each do |note| %>
473
+ 10: <li>
474
+ 11: <%= link to note do %>
475
+ 12: <h1><%= note.title %></h1>
476
+ 13: <%= truncate note.body, :length => 25 %>
477
+ 14: <% end %>
478
+ app/views/notes/index.html.erb:11:in `block in _app_views_notes_index_html_erb__2841264777736749661_2173935160'
479
+ app/views/notes/index.html.erb:9:in `each'
480
+ app/views/notes/index.html.erb:9:in `_app_views_notes_index_html_erb__2841264777736749661_2173935160'
481
+ app/controllers/notes_controller.rb:7:in `index'
482
+
483
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
484
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
485
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
486
+
487
+
488
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
489
+ Processing by NotesController#index as HTML
490
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
491
+ Rendered notes/index.html.erb within layouts/application (6.8ms)
492
+ Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.4ms)
493
+
494
+
495
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
496
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
497
+
498
+
499
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
500
+ Served asset /jquery.js - 200 OK (0ms)
501
+
502
+
503
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
504
+ Served asset /notes.css - 200 OK (0ms)
505
+
506
+
507
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
508
+ Served asset /scaffold.css - 200 OK (0ms)
509
+
510
+
511
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
512
+ Served asset /jquery_ujs.js - 200 OK (0ms)
513
+
514
+
515
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
516
+ Served asset /application.css - 200 OK (0ms)
517
+
518
+
519
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
520
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
521
+
522
+
523
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
524
+ Served asset /notes.js - 200 OK (0ms)
525
+
526
+
527
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
528
+ Served asset /application.js - 200 OK (0ms)
529
+
530
+
531
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
532
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
533
+
534
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
535
+
536
+
537
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
538
+
539
+
540
+ Started GET "/assets/images/icons-18-white.png" for 127.0.0.1 at 2011-09-14 12:32:02 -0300
541
+ Served asset /images/icons-18-white.png - 404 Not Found (2ms)
542
+
543
+ ActionController::RoutingError (No route matches [GET] "/assets/images/icons-18-white.png"):
544
+
545
+
546
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
547
+
548
+
549
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 12:32:06 -0300
550
+ Processing by NotesController#show as HTML
551
+ Parameters: {"id"=>"1"}
552
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
553
+ Rendered notes/show.html.erb within layouts/application (5.3ms)
554
+ Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.4ms)
555
+
556
+
557
+ Started GET "/assets/images/icons-18-white.png" for 127.0.0.1 at 2011-09-14 12:32:21 -0300
558
+ Served asset /images/icons-18-white.png - 404 Not Found (33ms)
559
+
560
+ ActionController::RoutingError (No route matches [GET] "/assets/images/icons-18-white.png"):
561
+
562
+
563
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
564
+
565
+
566
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 12:33:01 -0300
567
+ Processing by NotesController#show as HTML
568
+ Parameters: {"id"=>"1"}
569
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
570
+ Rendered notes/show.html.erb within layouts/application (5.6ms)
571
+ Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.4ms)
572
+
573
+
574
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
575
+ Processing by NotesController#show as HTML
576
+ Parameters: {"id"=>"1"}
577
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
578
+ Rendered notes/show.html.erb within layouts/application (5.9ms)
579
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.4ms)
580
+
581
+
582
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
583
+ Served asset /application.css - 200 OK (0ms)
584
+
585
+
586
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
587
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
588
+
589
+
590
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
591
+ Served asset /scaffold.css - 200 OK (0ms)
592
+
593
+
594
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
595
+ Served asset /jquery.js - 200 OK (0ms)
596
+
597
+
598
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
599
+ Served asset /notes.css - 200 OK (0ms)
600
+
601
+
602
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
603
+ Served asset /jquery_ujs.js - 200 OK (0ms)
604
+
605
+
606
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
607
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
608
+
609
+
610
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
611
+ Served asset /notes.js - 200 OK (0ms)
612
+
613
+
614
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
615
+ Served asset /application.js - 200 OK (0ms)
616
+
617
+
618
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:34:29 -0300
619
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
620
+
621
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
622
+
623
+
624
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
625
+
626
+
627
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:34:32 -0300
628
+ Processing by NotesController#index as HTML
629
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
630
+ Rendered notes/index.html.erb within layouts/application (6.8ms)
631
+ Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.4ms)
632
+
633
+
634
+ Started GET "/assets/images/icons-18-white.png" for 127.0.0.1 at 2011-09-14 12:34:32 -0300
635
+ Served asset /images/icons-18-white.png - 404 Not Found (3ms)
636
+
637
+ ActionController::RoutingError (No route matches [GET] "/assets/images/icons-18-white.png"):
638
+
639
+
640
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
641
+
642
+
643
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:34:38 -0300
644
+ Processing by NotesController#index as HTML
645
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
646
+ Rendered notes/index.html.erb within layouts/application (6.1ms)
647
+ Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.4ms)
648
+
649
+
650
+ Started GET "/notes/new" for 127.0.0.1 at 2011-09-14 12:34:40 -0300
651
+ Processing by NotesController#new as HTML
652
+ Rendered notes/_form.html.erb (7.2ms)
653
+ Rendered notes/new.html.erb within layouts/application (8.2ms)
654
+ Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 0.2ms)
655
+
656
+
657
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:34:42 -0300
658
+ Processing by NotesController#index as HTML
659
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
660
+ Rendered notes/index.html.erb within layouts/application (6.0ms)
661
+ Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.4ms)
662
+
663
+
664
+ Started GET "/notes/1/edit" for 127.0.0.1 at 2011-09-14 12:34:45 -0300
665
+ Processing by NotesController#edit as HTML
666
+ Parameters: {"id"=>"1"}
667
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
668
+ Rendered notes/_form.html.erb (7.4ms)
669
+ Rendered notes/edit.html.erb within layouts/application (9.6ms)
670
+ Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.4ms)
671
+
672
+
673
+ Started GET "/notes/1/edit" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
674
+ Processing by NotesController#edit as HTML
675
+ Parameters: {"id"=>"1"}
676
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
677
+ Rendered notes/_form.html.erb (8.2ms)
678
+ Rendered notes/edit.html.erb within layouts/application (10.5ms)
679
+ Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.5ms)
680
+
681
+
682
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
683
+ Served asset /application.css - 200 OK (0ms)
684
+
685
+
686
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
687
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
688
+
689
+
690
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
691
+ Served asset /scaffold.css - 200 OK (0ms)
692
+
693
+
694
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
695
+ Served asset /notes.css - 200 OK (0ms)
696
+
697
+
698
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
699
+ Served asset /jquery_ujs.js - 200 OK (0ms)
700
+
701
+
702
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
703
+ Served asset /jquery.js - 200 OK (0ms)
704
+
705
+
706
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
707
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
708
+
709
+
710
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
711
+ Served asset /notes.js - 200 OK (0ms)
712
+
713
+
714
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 12:35:56 -0300
715
+ Served asset /application.js - 200 OK (0ms)
716
+
717
+
718
+ Started GET "/assets/images/ajax-loader.png" for 127.0.0.1 at 2011-09-14 12:35:57 -0300
719
+ Served asset /images/ajax-loader.png - 404 Not Found (2ms)
720
+
721
+ ActionController::RoutingError (No route matches [GET] "/assets/images/ajax-loader.png"):
722
+
723
+
724
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
725
+
726
+
727
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:36:00 -0300
728
+ Processing by NotesController#index as HTML
729
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
730
+ Rendered notes/index.html.erb within layouts/application (5.8ms)
731
+ Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.4ms)
732
+
733
+
734
+ Started GET "/assets/images/icons-18-white.png" for 127.0.0.1 at 2011-09-14 12:36:00 -0300
735
+ Served asset /images/icons-18-white.png - 404 Not Found (4ms)
736
+
737
+ ActionController::RoutingError (No route matches [GET] "/assets/images/icons-18-white.png"):
738
+
739
+
740
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
741
+
742
+
743
+ Started GET "/notes/new" for 127.0.0.1 at 2011-09-14 12:36:02 -0300
744
+ Processing by NotesController#new as HTML
745
+ Rendered notes/_form.html.erb (42.3ms)
746
+ Rendered notes/new.html.erb within layouts/application (43.8ms)
747
+ Completed 200 OK in 50ms (Views: 49.7ms | ActiveRecord: 0.2ms)
748
+
749
+
750
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 12:36:04 -0300
751
+ Processing by NotesController#index as HTML
752
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
753
+ Rendered notes/index.html.erb within layouts/application (5.8ms)
754
+ Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.4ms)
755
+
756
+
757
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
758
+ Processing by NotesController#index as HTML
759
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
760
+ Rendered notes/index.html.erb within layouts/application (6.2ms)
761
+ Compiled jquery.mobile.min.css (0ms) (pid 1020)
762
+ Compiled application.css (3ms) (pid 1020)
763
+ Completed 200 OK in 57ms (Views: 55.7ms | ActiveRecord: 0.4ms)
764
+
765
+
766
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
767
+ Served asset /application.css - 200 OK (13ms)
768
+
769
+
770
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
771
+ Served asset /jquery.mobile.min.css - 200 OK (7ms)
772
+
773
+
774
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
775
+ Served asset /notes.css - 200 OK (0ms)
776
+
777
+
778
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
779
+ Served asset /scaffold.css - 200 OK (0ms)
780
+
781
+
782
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
783
+ Served asset /jquery.js - 200 OK (0ms)
784
+
785
+
786
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
787
+ Served asset /jquery_ujs.js - 200 OK (0ms)
788
+
789
+
790
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
791
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
792
+
793
+
794
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
795
+ Served asset /notes.js - 200 OK (0ms)
796
+
797
+
798
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
799
+ Served asset /application.js - 200 OK (1ms)
800
+
801
+
802
+ Started GET "/assets/assets/ajax-loader.png" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
803
+ Served asset /assets/ajax-loader.png - 404 Not Found (2ms)
804
+
805
+ ActionController::RoutingError (No route matches [GET] "/assets/assets/ajax-loader.png"):
806
+
807
+
808
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
809
+
810
+
811
+ Started GET "/assets/assets/icons-18-white.png" for 127.0.0.1 at 2011-09-14 13:05:36 -0300
812
+ Served asset /assets/icons-18-white.png - 404 Not Found (3ms)
813
+
814
+ ActionController::RoutingError (No route matches [GET] "/assets/assets/icons-18-white.png"):
815
+
816
+
817
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
818
+
819
+
820
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
821
+ Processing by NotesController#index as HTML
822
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
823
+ Rendered notes/index.html.erb within layouts/application (6.0ms)
824
+ Compiled jquery.mobile.min.css (0ms) (pid 1020)
825
+ Compiled application.css (3ms) (pid 1020)
826
+ Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.4ms)
827
+
828
+
829
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
830
+ Served asset /application.css - 200 OK (16ms)
831
+
832
+
833
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
834
+ Served asset /jquery.mobile.min.css - 200 OK (8ms)
835
+
836
+
837
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
838
+ Served asset /notes.css - 200 OK (0ms)
839
+
840
+
841
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
842
+ Served asset /scaffold.css - 200 OK (0ms)
843
+
844
+
845
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
846
+ Served asset /jquery.js - 200 OK (0ms)
847
+
848
+
849
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
850
+ Served asset /jquery_ujs.js - 200 OK (0ms)
851
+
852
+
853
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
854
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
855
+
856
+
857
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
858
+ Served asset /notes.js - 200 OK (0ms)
859
+
860
+
861
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
862
+ Served asset /application.js - 200 OK (0ms)
863
+
864
+
865
+ Started GET "/assets/icons-18-white.png" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
866
+ Served asset /icons-18-white.png - 200 OK (7ms)
867
+
868
+
869
+ Started GET "/assets/ajax-loader.png" for 127.0.0.1 at 2011-09-14 13:07:22 -0300
870
+ Served asset /ajax-loader.png - 200 OK (8ms)
871
+
872
+
873
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
874
+ Processing by NotesController#index as HTML
875
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
876
+ Rendered notes/index.html.erb within layouts/application (6.5ms)
877
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.4ms)
878
+
879
+
880
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
881
+ Served asset /application.css - 200 OK (0ms)
882
+
883
+
884
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
885
+ Served asset /jquery.mobile.min.css - 200 OK (0ms)
886
+
887
+
888
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
889
+ Served asset /notes.css - 200 OK (0ms)
890
+
891
+
892
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
893
+ Served asset /scaffold.css - 200 OK (0ms)
894
+
895
+
896
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
897
+ Served asset /jquery.js - 200 OK (0ms)
898
+
899
+
900
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
901
+ Served asset /jquery.mobile.min.js - 200 OK (0ms)
902
+
903
+
904
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
905
+ Served asset /jquery_ujs.js - 200 OK (0ms)
906
+
907
+
908
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
909
+ Served asset /notes.js - 200 OK (0ms)
910
+
911
+
912
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
913
+ Served asset /application.js - 200 OK (0ms)
914
+
915
+
916
+ Started GET "/assets/ajax-loader.png" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
917
+ Served asset /ajax-loader.png - 200 OK (0ms)
918
+
919
+
920
+ Started GET "/assets/icons-18-white.png" for 127.0.0.1 at 2011-09-14 13:08:11 -0300
921
+ Served asset /icons-18-white.png - 200 OK (0ms)
922
+
923
+
924
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:08:12 -0300
925
+ Processing by NotesController#show as HTML
926
+ Parameters: {"id"=>"1"}
927
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
928
+ Rendered notes/show.html.erb within layouts/application (5.4ms)
929
+ Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.4ms)
930
+
931
+
932
+ Started GET "/notes/new" for 127.0.0.1 at 2011-09-14 13:08:15 -0300
933
+ Processing by NotesController#new as HTML
934
+ Rendered notes/_form.html.erb (7.8ms)
935
+ Rendered notes/new.html.erb within layouts/application (8.9ms)
936
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms)
937
+
938
+
939
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:08:20 -0300
940
+ Processing by NotesController#show as HTML
941
+ Parameters: {"id"=>"1"}
942
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
943
+ Rendered notes/show.html.erb within layouts/application (5.2ms)
944
+ Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.5ms)
945
+
946
+
947
+ Started GET "/" for 127.0.0.1 at 2011-09-14 13:21:47 -0300
948
+ Processing by NotesController#index as HTML
949
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" 
950
+ Rendered notes/index.html.erb within layouts/application (37.2ms)
951
+ Completed 200 OK in 86ms (Views: 84.8ms | ActiveRecord: 0.3ms)
952
+
953
+
954
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 13:21:48 -0300
955
+ Served asset /application.css - 304 Not Modified (0ms)
956
+
957
+
958
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 13:21:48 -0300
959
+ Served asset /notes.css - 304 Not Modified (28ms)
960
+
961
+
962
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 13:21:48 -0300
963
+ Served asset /jquery.mobile.min.css - 304 Not Modified (3ms)
964
+
965
+
966
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-09-14 13:21:48 -0300
967
+ Served asset /scaffold.css - 304 Not Modified (2ms)
968
+
969
+
970
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 13:21:48 -0300
971
+ Served asset /application.js - 304 Not Modified (0ms)
972
+
973
+
974
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 13:21:48 -0300
975
+ Served asset /notes.js - 304 Not Modified (1ms)
976
+
977
+
978
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:21:50 -0300
979
+ Processing by NotesController#show as HTML
980
+ Parameters: {"id"=>"1"}
981
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
982
+ Rendered notes/show.html.erb within layouts/application (6.1ms)
983
+ Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.5ms)
984
+
985
+
986
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:21:51 -0300
987
+ Processing by NotesController#index as HTML
988
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
989
+ Rendered notes/index.html.erb within layouts/application (39.2ms)
990
+ Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.4ms)
991
+
992
+
993
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:21:53 -0300
994
+ Processing by NotesController#show as HTML
995
+ Parameters: {"id"=>"1"}
996
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
997
+ Rendered notes/show.html.erb within layouts/application (5.2ms)
998
+ Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.4ms)
999
+
1000
+
1001
+ Started GET "/notes/1/edit" for 127.0.0.1 at 2011-09-14 13:21:54 -0300
1002
+ Processing by NotesController#edit as HTML
1003
+ Parameters: {"id"=>"1"}
1004
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1005
+ Rendered notes/_form.html.erb (40.8ms)
1006
+ Rendered notes/edit.html.erb within layouts/application (51.8ms)
1007
+ Completed 200 OK in 63ms (Views: 61.3ms | ActiveRecord: 0.5ms)
1008
+
1009
+
1010
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:21:56 -0300
1011
+ Processing by NotesController#index as HTML
1012
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
1013
+ Rendered notes/index.html.erb within layouts/application (6.1ms)
1014
+ Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.4ms)
1015
+
1016
+
1017
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:21:58 -0300
1018
+ Processing by NotesController#show as HTML
1019
+ Parameters: {"id"=>"1"}
1020
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1021
+ Rendered notes/show.html.erb within layouts/application (5.2ms)
1022
+ Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.4ms)
1023
+
1024
+
1025
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:22:00 -0300
1026
+ Processing by NotesController#index as HTML
1027
+ Note Load (0.1ms) SELECT "notes".* FROM "notes"
1028
+ Rendered notes/index.html.erb within layouts/application (6.6ms)
1029
+ Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.4ms)
1030
+
1031
+
1032
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1033
+ Processing by NotesController#index as HTML
1034
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
1035
+ Rendered notes/index.html.erb within layouts/application (6.9ms)
1036
+ Compiled application.css (3ms) (pid 1798)
1037
+ Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.5ms)
1038
+
1039
+
1040
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1041
+ Served asset /application.css - 200 OK (11ms)
1042
+
1043
+
1044
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1045
+ Served asset /jquery.mobile.min.css - 304 Not Modified (3ms)
1046
+
1047
+
1048
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1049
+ Served asset /jquery.js - 304 Not Modified (8ms)
1050
+
1051
+
1052
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1053
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1054
+
1055
+
1056
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1057
+ Served asset /jquery.mobile.min.js - 304 Not Modified (3ms)
1058
+
1059
+
1060
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1061
+ Served asset /notes.css - 304 Not Modified (0ms)
1062
+
1063
+
1064
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1065
+ Served asset /notes.js - 304 Not Modified (0ms)
1066
+
1067
+
1068
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1069
+ Served asset /application.js - 304 Not Modified (0ms)
1070
+
1071
+
1072
+ Started GET "/assets/ajax-loader.png" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1073
+ Served asset /ajax-loader.png - 304 Not Modified (2ms)
1074
+
1075
+
1076
+ Started GET "/assets/icons-18-white.png" for 127.0.0.1 at 2011-09-14 13:22:25 -0300
1077
+ Served asset /icons-18-white.png - 304 Not Modified (2ms)
1078
+
1079
+
1080
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:22:26 -0300
1081
+ Processing by NotesController#show as HTML
1082
+ Parameters: {"id"=>"1"}
1083
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1084
+ Rendered notes/show.html.erb within layouts/application (5.2ms)
1085
+ Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.4ms)
1086
+
1087
+
1088
+ Started GET "/notes/1/edit" for 127.0.0.1 at 2011-09-14 13:22:28 -0300
1089
+ Processing by NotesController#edit as HTML
1090
+ Parameters: {"id"=>"1"}
1091
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1092
+ Rendered notes/_form.html.erb (7.6ms)
1093
+ Rendered notes/edit.html.erb within layouts/application (9.3ms)
1094
+ Completed 200 OK in 22ms (Views: 18.8ms | ActiveRecord: 0.7ms)
1095
+
1096
+
1097
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:22:32 -0300
1098
+ Processing by NotesController#show as HTML
1099
+ Parameters: {"id"=>"1"}
1100
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1101
+ Rendered notes/show.html.erb within layouts/application (5.7ms)
1102
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.5ms)
1103
+
1104
+
1105
+ Started GET "/notes/1/edit" for 127.0.0.1 at 2011-09-14 13:22:34 -0300
1106
+ Processing by NotesController#edit as HTML
1107
+ Parameters: {"id"=>"1"}
1108
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1109
+ Rendered notes/_form.html.erb (7.7ms)
1110
+ Rendered notes/edit.html.erb within layouts/application (9.4ms)
1111
+ Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 0.6ms)
1112
+
1113
+
1114
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:22:37 -0300
1115
+ Processing by NotesController#show as HTML
1116
+ Parameters: {"id"=>"1"}
1117
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1118
+ Rendered notes/show.html.erb within layouts/application (6.0ms)
1119
+ Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.5ms)
1120
+
1121
+
1122
+ Started GET "/assets/images/icons-18-white.png" for 127.0.0.1 at 2011-09-14 13:38:02 -0300
1123
+ Served asset /images/icons-18-white.png - 404 Not Found (2ms)
1124
+
1125
+ ActionController::RoutingError (No route matches [GET] "/assets/images/icons-18-white.png"):
1126
+
1127
+
1128
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.4ms)
1129
+
1130
+
1131
+ Started GET "/" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1132
+ Processing by NotesController#index as HTML
1133
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" 
1134
+ Rendered notes/index.html.erb within layouts/application (28.0ms)
1135
+ Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 0.3ms)
1136
+
1137
+
1138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1139
+ Served asset /application.css - 304 Not Modified (0ms)
1140
+
1141
+
1142
+ Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1143
+ Served asset /notes.css - 304 Not Modified (2ms)
1144
+
1145
+
1146
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1147
+ Served asset /jquery.js - 304 Not Modified (7ms)
1148
+
1149
+
1150
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1151
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
1152
+
1153
+
1154
+ Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1155
+ Served asset /jquery.mobile.min.css - 304 Not Modified (2ms)
1156
+
1157
+
1158
+ Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1159
+ Served asset /jquery.mobile.min.js - 304 Not Modified (2ms)
1160
+
1161
+
1162
+ Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1163
+ Served asset /notes.js - 304 Not Modified (1ms)
1164
+
1165
+
1166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 13:38:06 -0300
1167
+ Served asset /application.js - 304 Not Modified (0ms)
1168
+
1169
+
1170
+ Started GET "/assets/ajax-loader.png" for 127.0.0.1 at 2011-09-14 13:38:07 -0300
1171
+ Served asset /ajax-loader.png - 304 Not Modified (2ms)
1172
+
1173
+
1174
+ Started GET "/assets/icons-18-white.png" for 127.0.0.1 at 2011-09-14 13:38:07 -0300
1175
+ Served asset /icons-18-white.png - 304 Not Modified (2ms)
1176
+
1177
+
1178
+ Started GET "/notes/1" for 127.0.0.1 at 2011-09-14 13:38:08 -0300
1179
+ Processing by NotesController#show as HTML
1180
+ Parameters: {"id"=>"1"}
1181
+ Note Load (0.2ms) SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
1182
+ Rendered notes/show.html.erb within layouts/application (7.1ms)
1183
+ Completed 200 OK in 16ms (Views: 13.3ms | ActiveRecord: 0.5ms)
1184
+
1185
+
1186
+ Started GET "/notes" for 127.0.0.1 at 2011-09-14 13:38:10 -0300
1187
+ Processing by NotesController#index as HTML
1188
+ Note Load (0.1ms) SELECT "notes".* FROM "notes" 
1189
+ Rendered notes/index.html.erb within layouts/application (5.7ms)
1190
+ Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.4ms)