mole 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Manifest.txt +92 -0
- data/README.txt +10 -7
- data/lib/mole.rb +63 -1
- data/lib/mole/module.rb +136 -124
- data/lib/mole/utils/frameworks.rb +32 -7
- data/lib/mole/version.rb +1 -1
- data/notes/notes.txt +1 -0
- data/samples/merbapp/README +14 -0
- data/samples/merbapp/Rakefile +124 -0
- data/samples/merbapp/app/controllers/application.rb +3 -0
- data/samples/merbapp/app/controllers/exceptions.rb +13 -0
- data/samples/merbapp/app/controllers/moled.rb +25 -0
- data/samples/merbapp/app/helpers/global_helper.rb +5 -0
- data/samples/merbapp/app/mailers/views/layout/application.html.erb +1 -0
- data/samples/merbapp/app/mailers/views/layout/application.text.erb +1 -0
- data/samples/merbapp/app/parts/views/layout/application.html.erb +1 -0
- data/samples/merbapp/app/views/exceptions/internal_server_error.html.erb +216 -0
- data/samples/merbapp/app/views/exceptions/not_acceptable.html.erb +38 -0
- data/samples/merbapp/app/views/exceptions/not_found.html.erb +40 -0
- data/samples/merbapp/app/views/layout/application.html.erb +11 -0
- data/samples/merbapp/app/views/moled/index.html.erb +5 -0
- data/samples/merbapp/app/views/moled/result.html.erb +5 -0
- data/samples/merbapp/config/boot.rb +11 -0
- data/samples/merbapp/config/dependencies.rb +41 -0
- data/samples/merbapp/config/environments/development.rb +1 -0
- data/samples/merbapp/config/environments/production.rb +1 -0
- data/samples/merbapp/config/environments/test.rb +1 -0
- data/samples/merbapp/config/merb.yml +82 -0
- data/samples/merbapp/config/merb_init.rb +26 -0
- data/samples/merbapp/config/mole_config.rb +33 -0
- data/samples/merbapp/config/router.rb +38 -0
- data/samples/merbapp/config/upload.conf +0 -0
- data/samples/merbapp/log/merb.4000.pid +1 -0
- data/samples/merbapp/public/images/merb.jpg +0 -0
- data/samples/merbapp/public/merb.fcgi +6 -0
- data/samples/merbapp/public/stylesheets/master.css +119 -0
- data/samples/merbapp/script/destroy +32 -0
- data/samples/merbapp/script/generate +32 -0
- data/samples/merbapp/script/stop_merb +13 -0
- data/samples/merbapp/spec/spec_helper.rb +15 -0
- data/samples/merbapp/test/test_helper.rb +14 -0
- data/samples/railsapp/README +14 -0
- data/samples/railsapp/Rakefile +10 -0
- data/samples/railsapp/app/controllers/application.rb +13 -0
- data/samples/railsapp/app/controllers/moled_controller.rb +23 -0
- data/samples/railsapp/app/helpers/application_helper.rb +3 -0
- data/samples/railsapp/app/views/moled/index.html.erb +5 -0
- data/samples/railsapp/app/views/moled/result.html.erb +5 -0
- data/samples/railsapp/config/boot.rb +109 -0
- data/samples/railsapp/config/database.yml +13 -0
- data/samples/railsapp/config/environment.rb +59 -0
- data/samples/railsapp/config/environments/development.rb +18 -0
- data/samples/railsapp/config/environments/production.rb +20 -0
- data/samples/railsapp/config/environments/test.rb +22 -0
- data/samples/railsapp/config/initializers/inflections.rb +10 -0
- data/samples/railsapp/config/initializers/mime_types.rb +5 -0
- data/samples/railsapp/config/initializers/mole.rb +10 -0
- data/samples/railsapp/config/moles/mole_config.rb +44 -0
- data/samples/railsapp/config/routes.rb +35 -0
- data/samples/railsapp/doc/README_FOR_APP +2 -0
- data/samples/railsapp/log/development.log +3554 -0
- data/samples/railsapp/log/production.log +643 -0
- data/samples/railsapp/log/server.log +0 -0
- data/samples/railsapp/log/test.log +0 -0
- data/samples/railsapp/public/.htaccess +40 -0
- data/samples/railsapp/public/404.html +30 -0
- data/samples/railsapp/public/422.html +30 -0
- data/samples/railsapp/public/500.html +30 -0
- data/samples/railsapp/public/dispatch.cgi +10 -0
- data/samples/railsapp/public/dispatch.fcgi +24 -0
- data/samples/railsapp/public/dispatch.rb +10 -0
- data/samples/railsapp/public/favicon.ico +0 -0
- data/samples/railsapp/public/images/rails.png +0 -0
- data/samples/railsapp/public/javascripts/application.js +2 -0
- data/samples/railsapp/public/javascripts/controls.js +963 -0
- data/samples/railsapp/public/javascripts/dragdrop.js +972 -0
- data/samples/railsapp/public/javascripts/effects.js +1120 -0
- data/samples/railsapp/public/javascripts/prototype.js +4225 -0
- data/samples/railsapp/public/robots.txt +5 -0
- data/samples/railsapp/script/about +3 -0
- data/samples/railsapp/script/console +3 -0
- data/samples/railsapp/script/destroy +3 -0
- data/samples/railsapp/script/generate +3 -0
- data/samples/railsapp/script/performance/benchmarker +3 -0
- data/samples/railsapp/script/performance/profiler +3 -0
- data/samples/railsapp/script/performance/request +3 -0
- data/samples/railsapp/script/plugin +3 -0
- data/samples/railsapp/script/process/inspector +3 -0
- data/samples/railsapp/script/process/reaper +3 -0
- data/samples/railsapp/script/process/spawner +3 -0
- data/samples/railsapp/script/runner +3 -0
- data/samples/railsapp/script/server +3 -0
- data/samples/railsapp/test/test_helper.rb +38 -0
- data/samples/rubyapp/README +22 -0
- data/samples/rubyapp/bin/ruby_app +35 -0
- data/samples/rubyapp/config/mole_conf.rb +31 -0
- data/samples/rubyapp/lib/fred.rb +22 -0
- data/spec/config/auto_mole_config.rb +26 -0
- data/spec/data/blee.rb +1 -1
- data/spec/module_spec.rb +8 -8
- data/spec/mole_spec.rb +70 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/utils/framework_spec.rb +52 -12
- metadata +154 -53
|
@@ -0,0 +1,643 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Processing Base#index (for 127.0.0.1 at 2008-03-24 10:51:49) [GET]
|
|
4
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
5
|
+
Parameters: {}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
MissingSourceFile (no such file to load -- mole):
|
|
9
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
10
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
11
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
12
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
13
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
14
|
+
/app/controllers/application.rb:14
|
|
15
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
16
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
17
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
18
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
19
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
20
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:104:in `require_or_load'
|
|
21
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:60:in `depend_on'
|
|
22
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:442:in `require_dependency'
|
|
23
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:141:in `prepare_application'
|
|
24
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:178:in `send!'
|
|
25
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:178:in `run_callbacks'
|
|
26
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `each'
|
|
27
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `send!'
|
|
28
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:175:in `run_callbacks'
|
|
29
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:114:in `dispatch'
|
|
30
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
|
|
31
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch'
|
|
32
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch'
|
|
33
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service'
|
|
34
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
|
35
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
|
36
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
|
37
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
|
|
38
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
|
39
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
|
40
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
|
|
41
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
|
42
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
|
43
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
|
44
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch'
|
|
45
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66
|
|
46
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
47
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
48
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
49
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
50
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
51
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39
|
|
52
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
53
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
54
|
+
script/server:3
|
|
55
|
+
|
|
56
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 10:53:13) [GET]
|
|
60
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
61
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
62
|
+
Rendering moled/result
|
|
63
|
+
Completed in 0.00241 (414 reqs/sec) | Rendering: 0.00085 (35%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 11:33:02) [GET]
|
|
67
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
68
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
69
|
+
Rendering moled/index
|
|
70
|
+
Completed in 0.00101 (986 reqs/sec) | Rendering: 0.00084 (83%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 11:33:05) [GET]
|
|
74
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
75
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
76
|
+
Rendering moled/result
|
|
77
|
+
Completed in 0.00107 (933 reqs/sec) | Rendering: 0.00075 (70%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 11:33:07) [GET]
|
|
81
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
82
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
83
|
+
Rendering moled/index
|
|
84
|
+
Completed in 0.00038 (2652 reqs/sec) | Rendering: 0.00024 (63%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 11:33:08) [GET]
|
|
88
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
89
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
90
|
+
Rendering moled/result
|
|
91
|
+
Completed in 0.00051 (1949 reqs/sec) | Rendering: 0.00024 (47%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 11:33:11) [GET]
|
|
95
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
96
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
97
|
+
Rendering moled/index
|
|
98
|
+
Completed in 0.00044 (2257 reqs/sec) | Rendering: 0.00028 (62%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
Processing MoledController#my_slow_action (for 127.0.0.1 at 2008-03-24 11:33:12) [GET]
|
|
102
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
103
|
+
Parameters: {"action"=>"my_slow_action", "controller"=>"moled"}
|
|
104
|
+
Rendering moled/result
|
|
105
|
+
Completed in 2.00086 (0 reqs/sec) | Rendering: 0.00034 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_slow_action]
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 11:33:22) [GET]
|
|
109
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
110
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
111
|
+
Rendering moled/index
|
|
112
|
+
Completed in 0.00040 (2493 reqs/sec) | Rendering: 0.00025 (62%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
Processing MoledController#my_hosed_action (for 127.0.0.1 at 2008-03-24 11:33:26) [GET]
|
|
116
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
117
|
+
Parameters: {"action"=>"my_hosed_action", "controller"=>"moled"}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
RuntimeError (This will hose your app):
|
|
121
|
+
/app/controllers/moled_controller.rb:22:in `my_hosed_action'
|
|
122
|
+
(eval):9:in `call'
|
|
123
|
+
(eval):9:in `my_hosed_action'
|
|
124
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
125
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:307:in `realtime'
|
|
126
|
+
(eval):8:in `my_hosed_action'
|
|
127
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send'
|
|
128
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
|
|
129
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters'
|
|
130
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
|
|
131
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
132
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
133
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
134
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
|
|
135
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action'
|
|
136
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
|
|
137
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache'
|
|
138
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action'
|
|
139
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send'
|
|
140
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters'
|
|
141
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
|
|
142
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process'
|
|
143
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process'
|
|
144
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request'
|
|
145
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch'
|
|
146
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
|
|
147
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch'
|
|
148
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch'
|
|
149
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service'
|
|
150
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
|
151
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
|
152
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
|
153
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
|
|
154
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
|
155
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
|
156
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
|
|
157
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
|
158
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
|
159
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
|
160
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch'
|
|
161
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66
|
|
162
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
163
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
164
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
165
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
166
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
167
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39
|
|
168
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
169
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
170
|
+
script/server:3
|
|
171
|
+
|
|
172
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
Processing MoledController#my_hosed_action (for 127.0.0.1 at 2008-03-24 13:42:47) [GET]
|
|
176
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
177
|
+
Parameters: {"action"=>"my_hosed_action", "controller"=>"moled"}
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
RuntimeError (This will hose your app):
|
|
181
|
+
/app/controllers/moled_controller.rb:22:in `my_hosed_action'
|
|
182
|
+
(eval):9:in `call'
|
|
183
|
+
(eval):9:in `my_hosed_action'
|
|
184
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
185
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:307:in `realtime'
|
|
186
|
+
(eval):8:in `my_hosed_action'
|
|
187
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send'
|
|
188
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
|
|
189
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters'
|
|
190
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
|
|
191
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
192
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
193
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
194
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
|
|
195
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action'
|
|
196
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
|
|
197
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache'
|
|
198
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action'
|
|
199
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send'
|
|
200
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters'
|
|
201
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
|
|
202
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process'
|
|
203
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process'
|
|
204
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request'
|
|
205
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch'
|
|
206
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
|
|
207
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch'
|
|
208
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch'
|
|
209
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service'
|
|
210
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
|
211
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
|
212
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
|
213
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
|
|
214
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
|
215
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
|
216
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
|
|
217
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
|
218
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
|
219
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
|
220
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch'
|
|
221
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66
|
|
222
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
223
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
224
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
225
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
226
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
227
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39
|
|
228
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
229
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
230
|
+
script/server:3
|
|
231
|
+
|
|
232
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
Processing MoledController#my_hosed_action (for 127.0.0.1 at 2008-03-24 13:42:49) [GET]
|
|
236
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
237
|
+
Parameters: {"action"=>"my_hosed_action", "controller"=>"moled"}
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
RuntimeError (This will hose your app):
|
|
241
|
+
/app/controllers/moled_controller.rb:22:in `my_hosed_action'
|
|
242
|
+
(eval):9:in `call'
|
|
243
|
+
(eval):9:in `my_hosed_action'
|
|
244
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
245
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:307:in `realtime'
|
|
246
|
+
(eval):8:in `my_hosed_action'
|
|
247
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send'
|
|
248
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
|
|
249
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters'
|
|
250
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
|
|
251
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
252
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
253
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
254
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
|
|
255
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action'
|
|
256
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
|
|
257
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache'
|
|
258
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action'
|
|
259
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send'
|
|
260
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters'
|
|
261
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
|
|
262
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process'
|
|
263
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process'
|
|
264
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request'
|
|
265
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch'
|
|
266
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
|
|
267
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch'
|
|
268
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch'
|
|
269
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service'
|
|
270
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
|
271
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
|
272
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
|
273
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
|
|
274
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
|
275
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
|
276
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
|
|
277
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
|
278
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
|
279
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
|
280
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch'
|
|
281
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66
|
|
282
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
283
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
284
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
285
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
286
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
287
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39
|
|
288
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
289
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
290
|
+
script/server:3
|
|
291
|
+
|
|
292
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:45:14) [GET]
|
|
296
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
297
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
298
|
+
Rendering moled/index
|
|
299
|
+
Completed in 0.00109 (918 reqs/sec) | Rendering: 0.00090 (82%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:45:19) [GET]
|
|
303
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
304
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
305
|
+
Rendering moled/result
|
|
306
|
+
Completed in 0.00134 (748 reqs/sec) | Rendering: 0.00077 (57%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:45:26) [GET]
|
|
310
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
311
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
312
|
+
Rendering moled/index
|
|
313
|
+
Completed in 0.00038 (2624 reqs/sec) | Rendering: 0.00024 (63%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
Processing MoledController#my_slow_action (for 127.0.0.1 at 2008-03-24 18:45:28) [GET]
|
|
317
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
318
|
+
Parameters: {"action"=>"my_slow_action", "controller"=>"moled"}
|
|
319
|
+
Rendering moled/result
|
|
320
|
+
Completed in 2.00097 (0 reqs/sec) | Rendering: 0.00035 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_slow_action]
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:45:32) [GET]
|
|
324
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
325
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
326
|
+
Rendering moled/index
|
|
327
|
+
Completed in 0.00038 (2624 reqs/sec) | Rendering: 0.00024 (63%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
Processing MoledController#my_hosed_action (for 127.0.0.1 at 2008-03-24 18:45:34) [GET]
|
|
331
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
332
|
+
Parameters: {"action"=>"my_hosed_action", "controller"=>"moled"}
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
RuntimeError (This will hose your app):
|
|
336
|
+
/app/controllers/moled_controller.rb:22:in `my_hosed_action'
|
|
337
|
+
(eval):9:in `call'
|
|
338
|
+
(eval):9:in `my_hosed_action'
|
|
339
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
340
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:307:in `realtime'
|
|
341
|
+
(eval):8:in `my_hosed_action'
|
|
342
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send'
|
|
343
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
|
|
344
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters'
|
|
345
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
|
|
346
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
347
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
348
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
349
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
|
|
350
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action'
|
|
351
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
|
|
352
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache'
|
|
353
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action'
|
|
354
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send'
|
|
355
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters'
|
|
356
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
|
|
357
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process'
|
|
358
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process'
|
|
359
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request'
|
|
360
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch'
|
|
361
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
|
|
362
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch'
|
|
363
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch'
|
|
364
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service'
|
|
365
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
|
366
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
|
367
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
|
368
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
|
|
369
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
|
370
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
|
371
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
|
|
372
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
|
373
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
|
374
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
|
375
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch'
|
|
376
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66
|
|
377
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
378
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
379
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
380
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
381
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
382
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39
|
|
383
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
384
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
385
|
+
script/server:3
|
|
386
|
+
|
|
387
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:45:46) [GET]
|
|
391
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
392
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
393
|
+
Rendering moled/result
|
|
394
|
+
Completed in 0.00079 (1270 reqs/sec) | Rendering: 0.00025 (31%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:45:50) [GET]
|
|
398
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
399
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
400
|
+
Rendering moled/index
|
|
401
|
+
Completed in 0.00041 (2462 reqs/sec) | Rendering: 0.00027 (66%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:51:38) [GET]
|
|
405
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
406
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
407
|
+
Rendering moled/index
|
|
408
|
+
Completed in 0.00248 (403 reqs/sec) | Rendering: 0.00085 (34%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:51:48) [GET]
|
|
412
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
413
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
414
|
+
Rendering moled/result
|
|
415
|
+
Completed in 0.00088 (1140 reqs/sec) | Rendering: 0.00078 (89%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:54:29) [GET]
|
|
419
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
420
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
421
|
+
Rendering moled/result
|
|
422
|
+
Completed in 0.00244 (410 reqs/sec) | Rendering: 0.00078 (32%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:54:38) [GET]
|
|
426
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
427
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
428
|
+
Rendering moled/index
|
|
429
|
+
Completed in 0.00089 (1123 reqs/sec) | Rendering: 0.00080 (90%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:54:39) [GET]
|
|
433
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
434
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
435
|
+
Rendering moled/result
|
|
436
|
+
Completed in 0.00033 (3030 reqs/sec) | Rendering: 0.00024 (73%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:54:43) [GET]
|
|
440
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
441
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
442
|
+
Rendering moled/index
|
|
443
|
+
Completed in 0.00033 (3068 reqs/sec) | Rendering: 0.00024 (73%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:55:29) [GET]
|
|
447
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
448
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
449
|
+
Rendering moled/index
|
|
450
|
+
Completed in 0.00254 (393 reqs/sec) | Rendering: 0.00086 (33%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:55:32) [GET]
|
|
454
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
455
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
456
|
+
Rendering moled/index
|
|
457
|
+
Completed in 0.00033 (3039 reqs/sec) | Rendering: 0.00024 (74%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:55:34) [GET]
|
|
461
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
462
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
463
|
+
Rendering moled/index
|
|
464
|
+
Completed in 0.00033 (3030 reqs/sec) | Rendering: 0.00025 (74%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 18:56:41) [GET]
|
|
468
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
469
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
470
|
+
Rendering moled/index
|
|
471
|
+
Completed in 0.00330 (302 reqs/sec) | Rendering: 0.00119 (35%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:56:48) [GET]
|
|
475
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
476
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
477
|
+
Rendering moled/result
|
|
478
|
+
Completed in 0.00090 (1113 reqs/sec) | Rendering: 0.00081 (90%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:57:32) [GET]
|
|
482
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
483
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
484
|
+
Rendering moled/result
|
|
485
|
+
Completed in 0.00246 (406 reqs/sec) | Rendering: 0.00081 (32%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:57:35) [GET]
|
|
489
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
490
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
491
|
+
Rendering moled/result
|
|
492
|
+
Completed in 0.00035 (2824 reqs/sec) | Rendering: 0.00026 (73%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 18:58:45) [GET]
|
|
496
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
497
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
498
|
+
Rendering moled/result
|
|
499
|
+
Completed in 0.00243 (412 reqs/sec) | Rendering: 0.00078 (32%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 19:00:48) [GET]
|
|
503
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
504
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
505
|
+
Rendering moled/result
|
|
506
|
+
Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00102 (35%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 19:02:43) [GET]
|
|
510
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
511
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
512
|
+
Rendering moled/result
|
|
513
|
+
Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00107 (39%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:05:05) [GET]
|
|
517
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
518
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
519
|
+
Rendering moled/index
|
|
520
|
+
Completed in 0.00248 (403 reqs/sec) | Rendering: 0.00084 (33%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:05:43) [GET]
|
|
524
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
525
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
526
|
+
Rendering moled/index
|
|
527
|
+
Completed in 0.06649 (15 reqs/sec) | Rendering: 0.06481 (97%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:07:09) [GET]
|
|
531
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
532
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
533
|
+
Rendering moled/index
|
|
534
|
+
Completed in 0.00254 (393 reqs/sec) | Rendering: 0.00086 (33%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:08:14) [GET]
|
|
538
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
539
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
540
|
+
Rendering moled/index
|
|
541
|
+
Completed in 0.00251 (399 reqs/sec) | Rendering: 0.00085 (33%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:08:59) [GET]
|
|
545
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
546
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
547
|
+
Rendering moled/index
|
|
548
|
+
Completed in 0.00105 (951 reqs/sec) | Rendering: 0.00088 (83%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 19:09:05) [GET]
|
|
552
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
553
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
554
|
+
Rendering moled/result
|
|
555
|
+
Completed in 0.00122 (819 reqs/sec) | Rendering: 0.00084 (68%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:09:09) [GET]
|
|
559
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
560
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
561
|
+
Rendering moled/index
|
|
562
|
+
Completed in 0.00042 (2375 reqs/sec) | Rendering: 0.00028 (66%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Processing MoledController#my_slow_action (for 127.0.0.1 at 2008-03-24 19:09:10) [GET]
|
|
566
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
567
|
+
Parameters: {"action"=>"my_slow_action", "controller"=>"moled"}
|
|
568
|
+
Rendering moled/result
|
|
569
|
+
Completed in 2.00087 (0 reqs/sec) | Rendering: 0.00035 (0%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_slow_action]
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
Processing MoledController#index (for 127.0.0.1 at 2008-03-24 19:09:17) [GET]
|
|
573
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
574
|
+
Parameters: {"action"=>"index", "controller"=>"moled"}
|
|
575
|
+
Rendering moled/index
|
|
576
|
+
Completed in 0.00038 (2637 reqs/sec) | Rendering: 0.00024 (63%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled]
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
Processing MoledController#my_hosed_action (for 127.0.0.1 at 2008-03-24 19:09:19) [GET]
|
|
580
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
581
|
+
Parameters: {"action"=>"my_hosed_action", "controller"=>"moled"}
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
RuntimeError (This will hose your app):
|
|
585
|
+
/app/controllers/moled_controller.rb:22:in `my_hosed_action'
|
|
586
|
+
(eval):9:in `call'
|
|
587
|
+
(eval):9:in `my_hosed_action'
|
|
588
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
589
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:307:in `realtime'
|
|
590
|
+
(eval):8:in `my_hosed_action'
|
|
591
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `send'
|
|
592
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
|
|
593
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:697:in `call_filters'
|
|
594
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
|
|
595
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
596
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
|
597
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
|
|
598
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
|
|
599
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:678:in `perform_action'
|
|
600
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
|
|
601
|
+
/opt/local/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/query_cache.rb:8:in `cache'
|
|
602
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/caching.rb:677:in `perform_action'
|
|
603
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `send'
|
|
604
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:524:in `process_without_filters'
|
|
605
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
|
|
606
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/session_management.rb:123:in `process'
|
|
607
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/base.rb:388:in `process'
|
|
608
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:171:in `handle_request'
|
|
609
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:115:in `dispatch'
|
|
610
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
|
|
611
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/dispatcher.rb:9:in `dispatch'
|
|
612
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:112:in `handle_dispatch'
|
|
613
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:78:in `service'
|
|
614
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
|
615
|
+
/opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
|
616
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
|
617
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
|
|
618
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
|
619
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
|
620
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
|
|
621
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
|
622
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
|
623
|
+
/opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
|
624
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/webrick_server.rb:62:in `dispatch'
|
|
625
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/servers/webrick.rb:66
|
|
626
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
627
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
628
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
629
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
|
630
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
|
|
631
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-2.0.2/lib/commands/server.rb:39
|
|
632
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
|
633
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
|
634
|
+
script/server:3
|
|
635
|
+
|
|
636
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
Processing MoledController#my_action (for 127.0.0.1 at 2008-03-24 19:11:38) [GET]
|
|
640
|
+
Session ID: BAh7BzoJdXNlciIMRmVybmFuZCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxl%0Acjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--36ba568029172f8358781c2835fa94ce74014688
|
|
641
|
+
Parameters: {"action"=>"my_action", "id"=>"10", "controller"=>"moled"}
|
|
642
|
+
Rendering moled/result
|
|
643
|
+
Completed in 0.00110 (912 reqs/sec) | Rendering: 0.00079 (71%) | DB: 0.00000 (0%) | 200 OK [http://localhost/moled/my_action/10]
|