marilyne 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. data/README.md +44 -13
  2. data/Rakefile +1 -1
  3. data/lib/generators/{marilyn → marilyne}/presenter_generator.rb +0 -0
  4. data/lib/generators/templates/presenter.rb +1 -1
  5. data/lib/marilyne/engine.rb +9 -0
  6. data/lib/{marilyn → marilyne}/helper.rb +9 -9
  7. data/lib/{marilyn → marilyne}/presenter.rb +3 -3
  8. data/lib/marilyne/version.rb +3 -0
  9. data/lib/marilyne.rb +5 -0
  10. data/lib/tasks/{marilyn_tasks.rake → marilyne_tasks.rake} +1 -1
  11. data/test/dummy/app/presenters/user_presenter.rb +1 -1
  12. data/test/dummy/config/application.rb +1 -1
  13. data/test/dummy/db/development.sqlite3 +0 -0
  14. data/test/dummy/db/schema.rb +23 -23
  15. data/test/dummy/log/development.log +80 -326
  16. data/test/dummy/log/test.log +5 -134
  17. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  18. data/test/dummy/tmp/cache/assets/CAA/620/sprockets%2F87b209c0c9da28094a8d5581a21262c6 +0 -0
  19. data/test/dummy/tmp/cache/assets/{C75/2F0/sprockets%2F54de5b71312225e0b690248b38409a6d → CAE/4F0/sprockets%2F5a6c412c047e2f38067eb473f2f73633} +0 -0
  20. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  21. data/test/dummy/tmp/cache/assets/CD8/B70/sprockets%2F4050a4e5062ab95c9f32e9b6940821ea +0 -0
  22. data/test/dummy/tmp/cache/assets/{D67/8C0/sprockets%2Fa5ec1263c53956c2fe2ed2604e3abf55 → CEB/6A0/sprockets%2F00e940e713bb2d76f9e40f697d9155a9} +0 -0
  23. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  24. data/test/dummy/tmp/cache/assets/{E45/990/sprockets%2Fc270c04a7b0ebc7a13e6bddcc5e7bdc1 → D1A/6C0/sprockets%2Ffbf586c3b503b6c61f83909c81a3947d} +0 -0
  25. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  26. data/test/dummy/tmp/cache/assets/D46/650/sprockets%2Ff56253b5f374fff1a33fbbc9881c9124 +0 -0
  27. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  28. data/test/dummy/tmp/cache/assets/{DFB/320/sprockets%2F08fc5e1bf462fe1ac6f28c7e3eda4c33 → D54/C10/sprockets%2Fc90e3bf92f49ac56c874963ce48f117d} +0 -0
  29. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  30. data/test/dummy/tmp/cache/assets/D67/B60/sprockets%2F5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  31. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  32. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  33. data/test/{marilyn_test.rb → marilyne_test.rb} +9 -9
  34. metadata +124 -121
  35. data/lib/marilyn/engine.rb +0 -9
  36. data/lib/marilyn/version.rb +0 -3
  37. data/lib/marilyn.rb +0 -5
  38. data/test/dummy/tmp/pids/server.pid +0 -1
@@ -1,64 +1,20 @@
1
1
  Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
-  (0.0ms) select sqlite_version(*)
4
-  (6.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2
+  (0.1ms) select sqlite_version(*)
3
+  (146.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
4
   (0.0ms) PRAGMA index_list("schema_migrations")
6
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
5
+  (86.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
7
  Migrating to CreateUsers (20120818172022)
9
8
   (0.0ms) begin transaction
10
-  (17.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
11
-  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120818172022')
12
-  (16.0ms) commit transaction
13
-  (1.0ms) select sqlite_version(*)
14
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
9
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
10
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120818172022')
11
+  (76.5ms) commit transaction
12
+  (0.2ms) select sqlite_version(*)
13
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
14
   (0.0ms) PRAGMA index_list("users")
16
15
 
17
16
 
18
- Started GET "/" for 127.0.0.1 at 2012-08-18 19:24:31 +0200
19
- Connecting to database specified by database.yml
20
-
21
- ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
22
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
23
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection'
24
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection'
25
- activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call'
26
- activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call'
27
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
28
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
29
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__318688298__call__361984425__callbacks'
30
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
31
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
32
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
33
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
34
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
35
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
36
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
38
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
39
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
40
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
41
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
42
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
43
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
44
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
45
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
46
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
47
- railties (3.2.8) lib/rails/application.rb:223:in `call'
48
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
49
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
50
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
51
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
52
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
53
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
54
-
55
-
56
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
57
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (65.0ms)
58
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (186.0ms)
59
-
60
-
61
- Started GET "/" for 127.0.0.1 at 2012-08-18 19:25:13 +0200
17
+ Started GET "/" for 127.0.0.1 at 2012-08-22 13:16:32 +0200
62
18
  Connecting to database specified by database.yml
63
19
 
64
20
  ActionController::RoutingError (No route matches [GET] "/"):
@@ -77,314 +33,112 @@ ActionController::RoutingError (No route matches [GET] "/"):
77
33
  rack (1.4.1) lib/rack/content_length.rb:14:in `call'
78
34
  railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
79
35
  rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
80
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
81
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
82
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
36
+ /home/alaibe/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
37
+ /home/alaibe/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
38
+ /home/alaibe/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
83
39
 
84
40
 
85
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (49.0ms)
41
+ Rendered /home/alaibe/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
86
42
 
87
43
 
88
- Started GET "/users" for 127.0.0.1 at 2012-08-18 19:25:25 +0200
44
+ Started GET "/users" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
89
45
  Processing by UsersController#index as HTML
90
- User Load (0.0ms) SELECT "users".* FROM "users" 
91
- Rendered users/index.html.erb within layouts/application (2.0ms)
92
- Compiled scaffold.css (0ms) (pid 1760)
93
- Compiled users.css (0ms) (pid 1760)
94
- Compiled application.css (157ms) (pid 1760)
95
- Compiled jquery.js (8ms) (pid 1760)
96
- Compiled jquery_ujs.js (2ms) (pid 1760)
97
- Compiled users.js (0ms) (pid 1760)
98
- Compiled application.js (344ms) (pid 1760)
99
- Completed 200 OK in 1143ms (Views: 722.0ms | ActiveRecord: 33.0ms)
46
+ User Load (0.1ms) SELECT "users".* FROM "users" 
47
+ Rendered users/index.html.erb within layouts/application (0.9ms)
48
+ Compiled scaffold.css (0ms) (pid 8823)
49
+ Compiled users.css (0ms) (pid 8823)
50
+ Compiled application.css (39ms) (pid 8823)
51
+ Compiled jquery.js (4ms) (pid 8823)
52
+ Compiled jquery_ujs.js (0ms) (pid 8823)
53
+ Compiled users.js (0ms) (pid 8823)
54
+ Compiled application.js (182ms) (pid 8823)
55
+ Completed 200 OK in 320ms (Views: 276.4ms | ActiveRecord: 1.9ms)
100
56
 
101
57
 
102
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-18 19:25:26 +0200
103
- Served asset /application.css - 200 OK (13ms)
58
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
59
+ Served asset /application.css - 200 OK (24ms)
104
60
 
105
61
 
106
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-08-18 19:25:26 +0200
107
- Served asset /scaffold.css - 200 OK (6ms)
62
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
63
+ Served asset /scaffold.css - 200 OK (1ms)
108
64
 
109
65
 
110
- Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-08-18 19:25:26 +0200
111
- Served asset /users.css - 200 OK (5ms)
66
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
67
+ Served asset /jquery.js - 200 OK (4ms)
112
68
 
113
69
 
114
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-18 19:25:26 +0200
115
- Served asset /jquery.js - 200 OK (7ms)
70
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
71
+ Served asset /jquery_ujs.js - 200 OK (1ms)
116
72
 
117
73
 
118
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-18 19:25:27 +0200
119
- Served asset /jquery_ujs.js - 200 OK (9ms)
74
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
75
+ Served asset /users.js - 200 OK (1ms)
120
76
 
121
77
 
122
- Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-08-18 19:25:27 +0200
123
- Served asset /users.js - 200 OK (5ms)
78
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
79
+ Served asset /users.css - 200 OK (1ms)
124
80
 
125
81
 
126
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-18 19:25:27 +0200
127
- Served asset /application.js - 200 OK (15ms)
82
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-22 13:16:56 +0200
83
+ Served asset /application.js - 200 OK (5ms)
128
84
 
129
85
 
130
- Started GET "/users/new" for 127.0.0.1 at 2012-08-18 19:25:28 +0200
86
+ Started GET "/users/new" for 127.0.0.1 at 2012-08-22 13:16:57 +0200
131
87
  Processing by UsersController#new as HTML
132
- Rendered users/_form.html.erb (74.0ms)
133
- Rendered users/new.html.erb within layouts/application (173.0ms)
134
- Completed 200 OK in 205ms (Views: 192.0ms | ActiveRecord: 0.0ms)
88
+ Rendered users/_form.html.erb (26.1ms)
89
+ Rendered users/new.html.erb within layouts/application (29.8ms)
90
+ Completed 200 OK in 39ms (Views: 33.7ms | ActiveRecord: 0.0ms)
135
91
 
136
92
 
137
- Started POST "/users" for 127.0.0.1 at 2012-08-18 19:25:32 +0200
93
+ Started POST "/users" for 127.0.0.1 at 2012-08-22 13:16:59 +0200
138
94
  Processing by UsersController#create as HTML
139
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"GgGdT8NYIyr/ac65HZ/xzq8TteH8qsL0WfYExTlZeaA=", "user"=>{"first_name"=>"ts", "last_name"=>"test"}, "commit"=>"Create User"}
140
-  (1.0ms) begin transaction
141
- SQL (143.0ms) INSERT INTO "users" ("created_at", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 18 Aug 2012 17:25:32 UTC +00:00], ["first_name", "ts"], ["last_name", "test"], ["updated_at", Sat, 18 Aug 2012 17:25:32 UTC +00:00]]
142
-  (7.0ms) commit transaction
95
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"S+DjWE7+BXuOMJo+0yRO9yyJ6wBvGbcqA4+IYSC0afY=", "user"=>{"first_name"=>"ds", "last_name"=>"sd"}, "commit"=>"Create User"}
96
+  (0.1ms) begin transaction
97
+ SQL (31.0ms) INSERT INTO "users" ("created_at", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 11:17:00 UTC +00:00], ["first_name", "ds"], ["last_name", "sd"], ["updated_at", Wed, 22 Aug 2012 11:17:00 UTC +00:00]]
98
+  (112.9ms) commit transaction
143
99
  Redirected to http://localhost:3000/users/1
144
- Completed 302 Found in 160ms (ActiveRecord: 151.0ms)
100
+ Completed 302 Found in 148ms (ActiveRecord: 143.9ms)
145
101
 
146
102
 
147
- Started GET "/users/1" for 127.0.0.1 at 2012-08-18 19:25:32 +0200
103
+ Started GET "/users/1" for 127.0.0.1 at 2012-08-22 13:17:00 +0200
148
104
  Processing by UsersController#show as HTML
149
105
  Parameters: {"id"=>"1"}
150
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
151
- ERROR: compiling _app_views_users_show_html_erb___262041505_35280204 RAISED D:/Anthony/marilyn/test/dummy/app/views/users/show.html.erb:5: syntax error, unexpected '<', expecting ')'
152
- <%= link_to 'Edit', edit_user_...
153
- ^
154
- D:/Anthony/marilyn/test/dummy/app/views/users/show.html.erb:6: syntax error, unexpected '(', expecting ')'
155
- ');@output_buffer.append= ( link_to 'Back', users_path )...
156
- ^
157
- Function body: def _app_views_users_show_html_erb___262041505_35280204(local_assigns, output_buffer)
158
- _old_virtual_path, @virtual_path = @virtual_path, "users/show";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.safe_concat('<p id="notice">');@output_buffer.append= ( notice );@output_buffer.safe_concat('</p>
159
-
160
- ');@output_buffer.append= ( presenter_for('user')
161
-
162
- <%= link_to 'Edit', edit_user_path(@user) );@output_buffer.safe_concat(' |
163
- ');@output_buffer.append= ( link_to 'Back', users_path );@output_buffer.safe_concat('
164
- ');@output_buffer.to_s
165
- ensure
166
- @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
167
- end
168
-
169
- Backtrace: D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `module_eval'
170
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `compile'
171
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/template.rb:244:in `block in compile!'
172
- <internal:prelude>:10:in `synchronize'
173
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/template.rb:232:in `compile!'
174
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/template.rb:144:in `block in render'
175
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
176
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
177
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
178
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
179
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
180
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
181
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
182
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
183
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
184
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
185
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
186
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
187
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
188
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
189
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
190
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
191
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
192
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
193
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
194
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
195
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
196
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
197
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
198
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
199
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
200
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
201
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
202
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
203
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
204
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
205
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
206
- D:/Anthony/marilyn/test/dummy/app/controllers/users_controller.rb:18:in `show'
207
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
208
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
209
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
210
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
211
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:414:in `_run__515608223__process_action__289278499__callbacks'
212
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
213
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
214
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
215
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
216
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
217
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
218
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
219
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
220
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
221
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
222
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
223
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
224
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
225
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
226
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
227
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
228
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
229
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
230
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
231
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
232
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
233
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
234
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
235
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
236
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
237
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
238
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
239
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
240
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
241
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
242
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
243
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
244
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
245
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
246
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
247
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
248
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__320435067__call__1022448657__callbacks'
249
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
250
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
251
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
252
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
253
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
254
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
255
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
256
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
257
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
258
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
259
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
260
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
261
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
262
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
263
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
264
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
265
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
266
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
267
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
268
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
269
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
270
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
271
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
272
- D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
273
- Rendered users/show.html.erb within layouts/application (130.0ms)
274
- Completed 500 Internal Server Error in 147ms
275
-
276
- ActionView::Template::Error (D:/Anthony/marilyn/test/dummy/app/views/users/show.html.erb:5: syntax error, unexpected '<', expecting ')'
277
- <%= link_to 'Edit', edit_user_...
278
- ^
279
- D:/Anthony/marilyn/test/dummy/app/views/users/show.html.erb:6: syntax error, unexpected '(', expecting ')'
280
- ');@output_buffer.append= ( link_to 'Back', users_path )...
281
- ^):
282
- 2:
283
- 3: <%= presenter_for('user')
284
- 4:
285
- 5: <%= link_to 'Edit', edit_user_path(@user) %> |
286
- 6: <%= link_to 'Back', users_path %>
287
- app/controllers/users_controller.rb:18:in `show'
288
-
289
-
290
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
291
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
292
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (56.0ms)
293
-
294
-
295
- Started GET "/users/1" for 127.0.0.1 at 2012-08-18 19:25:57 +0200
296
- Processing by UsersController#show as HTML
297
- Parameters: {"id"=>"1"}
298
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
299
- Rendered users/show.html.erb within layouts/application (16.0ms)
300
- Completed 500 Internal Server Error in 28ms
301
-
302
- ActionView::Template::Error (uninitialized constant Marylin):
303
- 1: <p id="notice"><%= notice %></p>
304
- 2:
305
- 3: <%= presenter_for('user') %>
306
- 4:
307
- 5: <%= link_to 'Edit', edit_user_path(@user) %> |
308
- 6: <%= link_to 'Back', users_path %>
309
- app/presenters/user_presenter.rb:1:in `<top (required)>'
310
- app/views/users/show.html.erb:3:in `_app_views_users_show_html_erb___262041505_48778872'
311
- app/controllers/users_controller.rb:18:in `show'
312
-
106
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
107
+ Rendered users/_user.html.erb (0.4ms)
108
+ Rendered users/show.html.erb within layouts/application (3.2ms)
109
+ Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.2ms)
313
110
 
314
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
315
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
316
- Rendered D:/Anthony/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (62.0ms)
317
111
 
318
-
319
- Started GET "/users/1" for 127.0.0.1 at 2012-08-18 19:26:53 +0200
320
- Processing by UsersController#show as HTML
112
+ Started GET "/users/1/edit" for 127.0.0.1 at 2012-08-22 13:17:02 +0200
113
+ Processing by UsersController#edit as HTML
321
114
  Parameters: {"id"=>"1"}
322
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
323
- Rendered users/_user.html.erb (1.0ms)
324
- Rendered users/show.html.erb within layouts/application (15.0ms)
325
- Completed 200 OK in 55ms (Views: 36.0ms | ActiveRecord: 2.0ms)
326
-
327
-
328
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
329
- Served asset /jquery.js - 304 Not Modified (0ms)
330
-
331
-
332
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
333
- Served asset /application.css - 304 Not Modified (1ms)
334
-
335
-
336
- Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
337
- Served asset /users.css - 304 Not Modified (0ms)
338
-
339
-
340
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
341
- Served asset /scaffold.css - 304 Not Modified (0ms)
342
-
343
-
344
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
345
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
346
-
347
-
348
- Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
349
- Served asset /users.js - 304 Not Modified (1ms)
350
-
351
-
352
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-18 19:26:54 +0200
353
- Served asset /application.js - 304 Not Modified (1ms)
115
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
116
+ Rendered users/_form.html.erb (2.2ms)
117
+ Rendered users/edit.html.erb within layouts/application (3.7ms)
118
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.1ms)
119
+
120
+
121
+ Started PUT "/users/1" for 127.0.0.1 at 2012-08-22 13:17:02 +0200
122
+ Processing by UsersController#update as HTML
123
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"S+DjWE7+BXuOMJo+0yRO9yyJ6wBvGbcqA4+IYSC0afY=", "user"=>{"first_name"=>"ds", "last_name"=>"sd"}, "commit"=>"Update User", "id"=>"1"}
124
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
125
+  (0.1ms) begin transaction
126
+  (0.1ms) commit transaction
127
+ Redirected to http://localhost:3000/users/1
128
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
354
129
 
355
130
 
356
- Started GET "/users/1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
131
+ Started GET "/users/1" for 127.0.0.1 at 2012-08-22 13:17:02 +0200
357
132
  Processing by UsersController#show as HTML
358
133
  Parameters: {"id"=>"1"}
359
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
360
- Rendered users/_user.html.erb (0.0ms)
361
- Rendered users/show.html.erb within layouts/application (8.0ms)
362
- Completed 200 OK in 29ms (Views: 26.0ms | ActiveRecord: 0.0ms)
134
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
135
+ Rendered users/_user.html.erb (0.1ms)
136
+ Rendered users/show.html.erb within layouts/application (1.3ms)
137
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
363
138
 
364
139
 
365
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
366
- Served asset /application.css - 304 Not Modified (1ms)
367
-
368
-
369
- Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
370
- Served asset /users.css - 304 Not Modified (0ms)
371
-
372
-
373
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
374
- Served asset /scaffold.css - 304 Not Modified (0ms)
375
-
376
-
377
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
378
- Served asset /jquery.js - 304 Not Modified (1ms)
379
-
380
-
381
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
382
- Served asset /jquery_ujs.js - 304 Not Modified (1ms)
383
-
384
-
385
- Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
386
- Served asset /users.js - 304 Not Modified (0ms)
387
-
388
-
389
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-18 19:27:47 +0200
390
- Served asset /application.js - 304 Not Modified (1ms)
140
+ Started GET "/users" for 127.0.0.1 at 2012-08-22 13:17:03 +0200
141
+ Processing by UsersController#index as HTML
142
+ User Load (0.2ms) SELECT "users".* FROM "users" 
143
+ Rendered users/index.html.erb within layouts/application (0.9ms)
144
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)