flatulent 0.0.1

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.
Files changed (87) hide show
  1. data/README +41 -0
  2. data/flatulent-0.0.0.gem +0 -0
  3. data/gemspec.rb +28 -0
  4. data/lib/flatulent.rb +239 -0
  5. data/lib/flatulent/attributes.rb +79 -0
  6. data/lib/flatulent/fontfiles/banner.flf +2494 -0
  7. data/lib/flatulent/fontfiles/big.flf +2204 -0
  8. data/lib/flatulent/fontfiles/block.flf +1691 -0
  9. data/lib/flatulent/fontfiles/bubble.flf +1630 -0
  10. data/lib/flatulent/fontfiles/digital.flf +1286 -0
  11. data/lib/flatulent/fontfiles/ivrit.flf +900 -0
  12. data/lib/flatulent/fontfiles/lean.flf +1691 -0
  13. data/lib/flatulent/fontfiles/mini.flf +899 -0
  14. data/lib/flatulent/fontfiles/mnemonic.flf +3702 -0
  15. data/lib/flatulent/fontfiles/script.flf +1493 -0
  16. data/lib/flatulent/fontfiles/shadow.flf +1097 -0
  17. data/lib/flatulent/fontfiles/slant.flf +1295 -0
  18. data/lib/flatulent/fontfiles/small.flf +1097 -0
  19. data/lib/flatulent/fontfiles/smscript.flf +1097 -0
  20. data/lib/flatulent/fontfiles/smshadow.flf +899 -0
  21. data/lib/flatulent/fontfiles/smslant.flf +1097 -0
  22. data/lib/flatulent/fontfiles/standard.flf +2227 -0
  23. data/lib/flatulent/fontfiles/term.flf +600 -0
  24. data/lib/flatulent/pervasives.rb +32 -0
  25. data/lib/flatulent/text.rb +6 -0
  26. data/lib/flatulent/text/double_metaphone.rb +356 -0
  27. data/lib/flatulent/text/figlet.rb +17 -0
  28. data/lib/flatulent/text/figlet/font.rb +117 -0
  29. data/lib/flatulent/text/figlet/smusher.rb +64 -0
  30. data/lib/flatulent/text/figlet/typesetter.rb +68 -0
  31. data/lib/flatulent/text/levenshtein.rb +65 -0
  32. data/lib/flatulent/text/metaphone.rb +97 -0
  33. data/lib/flatulent/text/porter_stemming.rb +171 -0
  34. data/lib/flatulent/text/soundex.rb +61 -0
  35. data/rails/README +182 -0
  36. data/rails/Rakefile +10 -0
  37. data/rails/app/controllers/application.rb +7 -0
  38. data/rails/app/controllers/flatulent_controller.rb +20 -0
  39. data/rails/app/helpers/application_helper.rb +3 -0
  40. data/rails/app/helpers/flatulent_helper.rb +2 -0
  41. data/rails/config/boot.rb +45 -0
  42. data/rails/config/database.yml +36 -0
  43. data/rails/config/environment.rb +60 -0
  44. data/rails/config/environments/development.rb +21 -0
  45. data/rails/config/environments/production.rb +18 -0
  46. data/rails/config/environments/test.rb +19 -0
  47. data/rails/config/lighttpd.conf +54 -0
  48. data/rails/config/routes.rb +23 -0
  49. data/rails/doc/README_FOR_APP +2 -0
  50. data/rails/log/development.log +950 -0
  51. data/rails/log/fastcgi.crash.log +34 -0
  52. data/rails/log/lighttpd.access.log +65 -0
  53. data/rails/log/lighttpd.error.log +33 -0
  54. data/rails/log/production.log +0 -0
  55. data/rails/log/server.log +0 -0
  56. data/rails/log/test.log +0 -0
  57. data/rails/public/404.html +30 -0
  58. data/rails/public/500.html +30 -0
  59. data/rails/public/dispatch.cgi +10 -0
  60. data/rails/public/dispatch.fcgi +24 -0
  61. data/rails/public/dispatch.rb +10 -0
  62. data/rails/public/favicon.ico +0 -0
  63. data/rails/public/images/rails.png +0 -0
  64. data/rails/public/index.html +277 -0
  65. data/rails/public/javascripts/application.js +2 -0
  66. data/rails/public/javascripts/controls.js +833 -0
  67. data/rails/public/javascripts/dragdrop.js +942 -0
  68. data/rails/public/javascripts/effects.js +1088 -0
  69. data/rails/public/javascripts/prototype.js +2515 -0
  70. data/rails/public/robots.txt +1 -0
  71. data/rails/script/about +3 -0
  72. data/rails/script/breakpointer +3 -0
  73. data/rails/script/console +3 -0
  74. data/rails/script/destroy +3 -0
  75. data/rails/script/generate +3 -0
  76. data/rails/script/performance/benchmarker +3 -0
  77. data/rails/script/performance/profiler +3 -0
  78. data/rails/script/plugin +3 -0
  79. data/rails/script/process/inspector +3 -0
  80. data/rails/script/process/reaper +3 -0
  81. data/rails/script/process/spawner +3 -0
  82. data/rails/script/runner +3 -0
  83. data/rails/script/server +3 -0
  84. data/rails/test/functional/flatulent_controller_test.rb +18 -0
  85. data/rails/test/test_helper.rb +28 -0
  86. data/rails/tmp/sessions/ruby_sess.517c54e2d384126a +0 -0
  87. metadata +174 -0
@@ -0,0 +1,18 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Use a different logger for distributed setups
8
+ # config.logger = SyslogLogger.new
9
+
10
+ # Full error reports are disabled and caching is turned on
11
+ config.action_controller.consider_all_requests_local = false
12
+ config.action_controller.perform_caching = true
13
+
14
+ # Enable serving of images, stylesheets, and javascripts from an asset server
15
+ # config.action_controller.asset_host = "http://assets.example.com"
16
+
17
+ # Disable delivery errors, bad email addresses will be ignored
18
+ # config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,19 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Tell ActionMailer not to deliver emails to the real world.
17
+ # The :test delivery method accumulates sent emails in the
18
+ # ActionMailer::Base.deliveries array.
19
+ config.action_mailer.delivery_method = :test
@@ -0,0 +1,54 @@
1
+ # Default configuration file for the lighttpd web server
2
+ # Start using ./script/server lighttpd
3
+
4
+ server.bind = "0.0.0.0"
5
+ server.port = 3000
6
+
7
+ server.modules = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi", "mod_compress", "mod_expire" )
8
+
9
+ server.error-handler-404 = "/dispatch.fcgi"
10
+ server.pid-file = CWD + "/tmp/pids/lighttpd.pid"
11
+ server.document-root = CWD + "/public/"
12
+
13
+ server.errorlog = CWD + "/log/lighttpd.error.log"
14
+ accesslog.filename = CWD + "/log/lighttpd.access.log"
15
+
16
+ url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
17
+
18
+ compress.filetype = ( "text/plain", "text/html", "text/css", "text/javascript" )
19
+ compress.cache-dir = CWD + "/tmp/cache"
20
+
21
+ expire.url = ( "/favicon.ico" => "access 3 days",
22
+ "/images/" => "access 3 days",
23
+ "/stylesheets/" => "access 3 days",
24
+ "/javascripts/" => "access 3 days" )
25
+
26
+
27
+ # Change *-procs to 2 if you need to use Upload Progress or other tasks that
28
+ # *need* to execute a second request while the first is still pending.
29
+ fastcgi.server = ( ".fcgi" => ( "localhost" => (
30
+ "min-procs" => 1,
31
+ "max-procs" => 1,
32
+ "socket" => CWD + "/tmp/sockets/fcgi.socket",
33
+ "bin-path" => CWD + "/public/dispatch.fcgi",
34
+ "bin-environment" => ( "RAILS_ENV" => "development" )
35
+ ) ) )
36
+
37
+ mimetype.assign = (
38
+ ".css" => "text/css",
39
+ ".gif" => "image/gif",
40
+ ".htm" => "text/html",
41
+ ".html" => "text/html",
42
+ ".jpeg" => "image/jpeg",
43
+ ".jpg" => "image/jpeg",
44
+ ".js" => "text/javascript",
45
+ ".png" => "image/png",
46
+ ".swf" => "application/x-shockwave-flash",
47
+ ".txt" => "text/plain"
48
+ )
49
+
50
+ # Making sure file uploads above 64k always work when using IE or Safari
51
+ # For more information, see http://trac.lighttpd.net/trac/ticket/360
52
+ $HTTP["useragent"] =~ "^(.*MSIE.*)|(.*AppleWebKit.*)$" {
53
+ server.max-keep-alive-requests = 0
54
+ }
@@ -0,0 +1,23 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+
4
+ # Sample of regular route:
5
+ # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
6
+ # Keep in mind you can assign values other than :controller and :action
7
+
8
+ # Sample of named route:
9
+ # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
10
+ # This route can be invoked with purchase_url(:id => product.id)
11
+
12
+ # You can have the root of your site routed by hooking up ''
13
+ # -- just remember to delete public/index.html.
14
+ # map.connect '', :controller => "welcome"
15
+
16
+ # Allow downloading Web Service WSDL as a file with an extension
17
+ # instead of a file named 'wsdl'
18
+ map.connect ':controller/service.wsdl', :action => 'wsdl'
19
+
20
+ # Install the default route as the lowest priority.
21
+ map.connect ':controller/:action/:id.:format'
22
+ map.connect ':controller/:action/:id'
23
+ end
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake appdoc" to generate API documentation for your models and controllers.
@@ -0,0 +1,950 @@
1
+
2
+
3
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:17:26) [GET]
4
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
5
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
6
+ Completed in 0.06757 (14 reqs/sec) | Rendering: 0.00006 (0%) | 200 OK [http://localhost/flatulent]
7
+
8
+
9
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:17:33) [POST]
10
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
11
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422146", "m"=>"eee5935409c5a78d9aa7fccb507c3296", "submit"=>"Submit", "t"=>""}}
12
+ Completed in 0.02305 (43 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/flatulent]
13
+
14
+
15
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:17:35) [POST]
16
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
17
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422153", "m"=>"a5431ca4338bc386869147ed4c710139", "submit"=>"Submit", "t"=>""}}
18
+ Completed in 0.02203 (45 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/flatulent]
19
+
20
+
21
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:18:53) [POST]
22
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
23
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422155", "m"=>"117a9ea3c78f7b7fd5e1efeca1be0f7c", "submit"=>"Submit", "t"=>"2PIP"}}
24
+
25
+
26
+ RuntimeError ({"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422155", "m"=>"117a9ea3c78f7b7fd5e1efeca1be0f7c", "submit"=>"Submit", "t"=>"2PIP"}}):
27
+ /app/controllers/flatulent_controller.rb:6:in `index'
28
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
29
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
30
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
31
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
32
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
33
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
34
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
35
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
36
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
37
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
38
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
39
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
40
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
41
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
42
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
43
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
44
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
45
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
46
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
47
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
48
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
49
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
50
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
51
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
52
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
53
+
54
+
55
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
56
+
57
+
58
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:20:12) [POST]
59
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
60
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422155", "m"=>"117a9ea3c78f7b7fd5e1efeca1be0f7c", "submit"=>"Submit", "t"=>"2PIP"}}
61
+ Completed in 0.00111 (903 reqs/sec) | Rendering: 0.00004 (3%) | 200 OK [http://localhost/flatulent]
62
+
63
+
64
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:22:58) [POST]
65
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
66
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422155", "m"=>"117a9ea3c78f7b7fd5e1efeca1be0f7c", "submit"=>"Submit", "t"=>"2PIP"}}
67
+ Completed in 0.08586 (11 reqs/sec) | Rendering: 0.00196 (2%) | 200 OK [http://localhost/flatulent]
68
+
69
+
70
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:23:35) [POST]
71
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
72
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422155", "m"=>"117a9ea3c78f7b7fd5e1efeca1be0f7c", "submit"=>"Submit", "t"=>"2PIP"}}
73
+ Completed in 0.02452 (40 reqs/sec) | Rendering: 0.00186 (7%) | 200 OK [http://localhost/flatulent]
74
+
75
+
76
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:23:44) [POST]
77
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
78
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422515", "m"=>"f6c6e7af516552e7c645762945ba23f2", "submit"=>"Submit", "t"=>"A7YE"}}
79
+ Completed in 0.02402 (41 reqs/sec) | Rendering: 0.00181 (7%) | 200 OK [http://localhost/flatulent]
80
+
81
+
82
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:23:54) [POST]
83
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
84
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422524", "m"=>"8cbfe7327f819295d8ed144f14b280d6", "submit"=>"Submit", "t"=>"HKYU"}}
85
+ Completed in 0.02398 (41 reqs/sec) | Rendering: 0.00167 (6%) | 200 OK [http://localhost/flatulent]
86
+
87
+
88
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:24:06) [POST]
89
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
90
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422534", "m"=>"91cc9f1a81e402768e31260eecbe6808", "submit"=>"Submit", "t"=>"OJ23"}}
91
+ Completed in 0.02358 (42 reqs/sec) | Rendering: 0.00176 (7%) | 200 OK [http://localhost/flatulent]
92
+
93
+
94
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:25:09) [POST]
95
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
96
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422534", "m"=>"91cc9f1a81e402768e31260eecbe6808", "submit"=>"Submit", "t"=>"OJ23"}}
97
+ Completed in 0.03346 (29 reqs/sec) | Rendering: 0.00201 (6%) | 200 OK [http://localhost/flatulent]
98
+
99
+
100
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:25:15) [POST]
101
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
102
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422534", "m"=>"91cc9f1a81e402768e31260eecbe6808", "submit"=>"Submit", "t"=>"OJ23"}}
103
+ Completed in 0.02708 (36 reqs/sec) | Rendering: 0.00204 (7%) | 200 OK [http://localhost/flatulent]
104
+
105
+
106
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:26:06) [POST]
107
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
108
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422534", "m"=>"91cc9f1a81e402768e31260eecbe6808", "submit"=>"Submit", "t"=>"OJ23"}}
109
+
110
+
111
+ NoMethodError (You have a nil object when you didn't expect it!
112
+ The error occurred while evaluating nil.has_key?):
113
+ ../../lib/flatulent.rb:194:in `getopts'
114
+ ../../lib/flatulent.rb:62:in `[]'
115
+ ../../lib/flatulent.rb:62:in `initialize'
116
+ ../../lib/flatulent.rb:204:in `new'
117
+ ../../lib/flatulent.rb:204:in `form'
118
+ /app/controllers/flatulent_controller.rb:29:in `index'
119
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
120
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
121
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
122
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
123
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
124
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
125
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
126
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
127
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
128
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
129
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
130
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
131
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
132
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
133
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
134
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
135
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
136
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
137
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
138
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
139
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
140
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
141
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
142
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
143
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
144
+
145
+
146
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
147
+
148
+
149
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:26:19) [POST]
150
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
151
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422534", "m"=>"91cc9f1a81e402768e31260eecbe6808", "submit"=>"Submit", "t"=>"OJ23"}}
152
+
153
+
154
+ NoMethodError (You have a nil object when you didn't expect it!
155
+ The error occurred while evaluating nil.has_key?):
156
+ ../../lib/flatulent.rb:194:in `getopts'
157
+ ../../lib/flatulent.rb:62:in `[]'
158
+ ../../lib/flatulent.rb:62:in `initialize'
159
+ ../../lib/flatulent.rb:204:in `new'
160
+ ../../lib/flatulent.rb:204:in `form'
161
+ /app/controllers/flatulent_controller.rb:29:in `index'
162
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
163
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
164
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
165
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
166
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
167
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
168
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
169
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
170
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
171
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
172
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
173
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
174
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
175
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
176
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
177
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
178
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
179
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
180
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
181
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
182
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
183
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
184
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
185
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
186
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
187
+
188
+
189
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
190
+
191
+
192
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:26:26) [POST]
193
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
194
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422534", "m"=>"91cc9f1a81e402768e31260eecbe6808", "submit"=>"Submit", "t"=>"OJ23"}}
195
+ Completed in 0.02665 (37 reqs/sec) | Rendering: 0.00194 (7%) | 200 OK [http://localhost/flatulent]
196
+
197
+
198
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:26:33) [POST]
199
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
200
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422686", "m"=>"341b54397eac657e419e1dea663ad145", "submit"=>"Submit", "t"=>"8PX5"}}
201
+ Completed in 0.02719 (36 reqs/sec) | Rendering: 0.00190 (6%) | 200 OK [http://localhost/flatulent]
202
+
203
+
204
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:26:51) [POST]
205
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
206
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422686", "m"=>"341b54397eac657e419e1dea663ad145", "submit"=>"Submit", "t"=>"8PX5"}}
207
+ Completed in 0.02842 (35 reqs/sec) | Rendering: 0.00257 (9%) | 200 OK [http://localhost/flatulent]
208
+
209
+
210
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:27:09) [POST]
211
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
212
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422711", "m"=>"b9bf0f427cfa7750b4fcf8ea42c1facc", "submit"=>"Submit", "t"=>"G2WO"}}
213
+ Completed in 0.02729 (36 reqs/sec) | Rendering: 0.00208 (7%) | 200 OK [http://localhost/flatulent]
214
+
215
+
216
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:27:20) [POST]
217
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
218
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422729", "m"=>"9aecf21f7ca44dd0181ab56008083759", "submit"=>"Submit", "t"=>"ENRF"}}
219
+ Completed in 0.09071 (11 reqs/sec) | Rendering: 0.00215 (2%) | 200 OK [http://localhost/flatulent]
220
+
221
+
222
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:27:55) [POST]
223
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
224
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422729", "m"=>"9aecf21f7ca44dd0181ab56008083759", "submit"=>"Submit", "t"=>"ENRF"}}
225
+ Completed in 0.07912 (12 reqs/sec) | Rendering: 0.00204 (2%) | 200 OK [http://localhost/flatulent]
226
+
227
+
228
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:28:22) [POST]
229
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
230
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422729", "m"=>"9aecf21f7ca44dd0181ab56008083759", "submit"=>"Submit", "t"=>"ENRF"}}
231
+ Completed in 0.02732 (36 reqs/sec) | Rendering: 0.00204 (7%) | 200 OK [http://localhost/flatulent]
232
+
233
+
234
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:28:28) [POST]
235
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
236
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422802", "m"=>"856c9bcc0b02fe631d3c49c28b62826c", "submit"=>"Submit", "t"=>"kbfv"}}
237
+ Completed in 0.02761 (36 reqs/sec) | Rendering: 0.00223 (8%) | 200 OK [http://localhost/flatulent]
238
+
239
+
240
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:28:37) [POST]
241
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
242
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422808", "m"=>"577eb3d787fbed49816b7424ec63cedf", "submit"=>"Submit", "t"=>"vliz"}}
243
+ Completed in 0.02839 (35 reqs/sec) | Rendering: 0.00218 (7%) | 200 OK [http://localhost/flatulent]
244
+
245
+
246
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:29:03) [GET]
247
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
248
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
249
+ Completed in 0.09138 (10 reqs/sec) | Rendering: 0.00216 (2%) | 200 OK [http://localhost/flatulent]
250
+
251
+
252
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:29:13) [GET]
253
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
254
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
255
+ Completed in 0.02623 (38 reqs/sec) | Rendering: 0.00183 (6%) | 200 OK [http://localhost/flatulent]
256
+
257
+
258
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:29:24) [GET]
259
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
260
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
261
+ Completed in 0.02660 (37 reqs/sec) | Rendering: 0.00190 (7%) | 200 OK [http://localhost/flatulent]
262
+
263
+
264
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:29:31) [POST]
265
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
266
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422864", "m"=>"f274ddfdfc6e0adae8e64ad10599d5c7", "submit"=>"Submit", "t"=>"aphm"}}
267
+ Completed in 0.02778 (36 reqs/sec) | Rendering: 0.00191 (6%) | 200 OK [http://localhost/flatulent]
268
+
269
+
270
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:30:19) [POST]
271
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
272
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183422871", "m"=>"10e8ad4a78cc1e17738b10114e570276", "submit"=>"Submit", "t"=>"buh2"}}
273
+
274
+
275
+ RuntimeError (too old):
276
+ ../../lib/flatulent.rb:189:in `valid?'
277
+ /app/controllers/flatulent_controller.rb:8:in `index'
278
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
279
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
280
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
281
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
282
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
283
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
284
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
285
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
286
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
287
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
288
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
289
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
290
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
291
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
292
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
293
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
294
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
295
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
296
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
297
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
298
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
299
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
300
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
301
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
302
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
303
+
304
+
305
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
306
+
307
+
308
+ Processing ApplicationController#index (for 127.0.0.1 at 2007-07-02 18:34:33) [GET]
309
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
310
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
311
+
312
+
313
+ SyntaxError (../../lib/flatulent.rb:178: syntax error, unexpected ';'
314
+ class MD5Error < ::StandardError <; end
315
+ ^
316
+ ../../lib/flatulent.rb:179: syntax error, unexpected ';'
317
+ class TimeToLiveError < ::StandardError <; end
318
+ ^):
319
+ /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
320
+ /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
321
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:495:in `require'
322
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
323
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:495:in `require'
324
+ /app/controllers/flatulent_controller.rb:3
325
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking'
326
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:203:in `load_file'
327
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
328
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:202:in `load_file'
329
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:94:in `require_or_load'
330
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:248:in `load_missing_constant'
331
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:452:in `const_missing'
332
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:464:in `const_missing'
333
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/inflector.rb:250:in `constantize'
334
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/core_ext/string/inflections.rb:148:in `constantize'
335
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1284:in `recognize'
336
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:40:in `dispatch'
337
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
338
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
339
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
340
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
341
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
342
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
343
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
344
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
345
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
346
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
347
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
348
+
349
+
350
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
351
+
352
+
353
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:34:56) [GET]
354
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
355
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
356
+ Completed in 0.06811 (14 reqs/sec) | Rendering: 0.00164 (2%) | 200 OK [http://localhost/flatulent]
357
+
358
+
359
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:35:04) [POST]
360
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
361
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
362
+
363
+
364
+ NoMethodError (undefined method `validate!' for Flatulent:Class):
365
+ /app/controllers/flatulent_controller.rb:6:in `index'
366
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
367
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
368
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
369
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
370
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
371
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
372
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
373
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
374
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
375
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
376
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
377
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
378
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
379
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
380
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
381
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
382
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
383
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
384
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
385
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
386
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
387
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
388
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
389
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
390
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
391
+
392
+
393
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
394
+
395
+
396
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:35:25) [POST]
397
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
398
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
399
+
400
+
401
+ ArgumentError (wrong number of arguments (1 for 0)):
402
+ /app/controllers/flatulent_controller.rb:6:in `validate!'
403
+ /app/controllers/flatulent_controller.rb:6:in `index'
404
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
405
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
406
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
407
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
408
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
409
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
410
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
411
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
412
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
413
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
414
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
415
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
416
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
417
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
418
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
419
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
420
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
421
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
422
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
423
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
424
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
425
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
426
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
427
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
428
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
429
+
430
+
431
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
432
+
433
+
434
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:35:45) [POST]
435
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
436
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
437
+
438
+
439
+ NoMethodError (You have a nil object when you didn't expect it!
440
+ The error occurred while evaluating nil.has_key?):
441
+ ../../lib/flatulent.rb:192:in `validate!'
442
+ /app/controllers/flatulent_controller.rb:6:in `index'
443
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
444
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
445
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
446
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
447
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
448
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
449
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
450
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
451
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
452
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
453
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
454
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
455
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
456
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
457
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
458
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
459
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
460
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
461
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
462
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
463
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
464
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
465
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
466
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
467
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
468
+
469
+
470
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
471
+
472
+
473
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:36:13) [POST]
474
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
475
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
476
+
477
+
478
+ NoMethodError (You have a nil object when you didn't expect it!
479
+ The error occurred while evaluating nil.has_key?):
480
+ ../../lib/flatulent.rb:192:in `validate!'
481
+ /app/controllers/flatulent_controller.rb:7:in `index'
482
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
483
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
484
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
485
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
486
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
487
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
488
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
489
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
490
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
491
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
492
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
493
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
494
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
495
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
496
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
497
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
498
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
499
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
500
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
501
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
502
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
503
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
504
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
505
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
506
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
507
+
508
+
509
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
510
+
511
+
512
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:36:28) [POST]
513
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
514
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
515
+
516
+
517
+ NoMethodError (You have a nil object when you didn't expect it!
518
+ The error occurred while evaluating nil.has_key?):
519
+ ../../lib/flatulent.rb:192:in `validate!'
520
+ /app/controllers/flatulent_controller.rb:7:in `index'
521
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
522
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
523
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
524
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
525
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
526
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
527
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
528
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
529
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
530
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
531
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
532
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
533
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
534
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
535
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
536
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
537
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
538
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
539
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
540
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
541
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
542
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
543
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
544
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
545
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
546
+
547
+
548
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
549
+
550
+
551
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:36:50) [POST]
552
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
553
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
554
+ Completed in 0.07020 (14 reqs/sec) | Rendering: 0.00171 (2%) | 200 OK [http://localhost/flatulent]
555
+
556
+
557
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:37:16) [POST]
558
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
559
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423196", "m"=>"f455f99622d3ba325684cf2ac4cf6337", "submit"=>"Submit", "t"=>"8a18"}}
560
+ Completed in 0.02446 (40 reqs/sec) | Rendering: 0.00165 (6%) | 200 OK [http://localhost/flatulent]
561
+
562
+
563
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:37:20) [POST]
564
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
565
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423336", "m"=>"7306841453a468a1f917666c92fa19db", "submit"=>"Submit", "t"=>"abc"}}
566
+
567
+
568
+ Flatulent::MD5Error (Flatulent::MD5Error):
569
+ ../../lib/flatulent.rb:201:in `validate!'
570
+ /app/controllers/flatulent_controller.rb:7:in `index'
571
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
572
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
573
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
574
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
575
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
576
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
577
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
578
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
579
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
580
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
581
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
582
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
583
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
584
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
585
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
586
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
587
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
588
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
589
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
590
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
591
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
592
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
593
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
594
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
595
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
596
+
597
+
598
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
599
+
600
+
601
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:37:34) [POST]
602
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
603
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423336", "m"=>"7306841453a468a1f917666c92fa19db", "submit"=>"Submit", "t"=>"JOHM"}}
604
+ Completed in 0.02451 (40 reqs/sec) | Rendering: 0.00196 (8%) | 200 OK [http://localhost/flatulent]
605
+
606
+
607
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:37:40) [POST]
608
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
609
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423354", "m"=>"f06dc8bb0a1de7f46c2a66bf4689a2da", "submit"=>"Submit", "t"=>"ccyn"}}
610
+ Completed in 0.02562 (39 reqs/sec) | Rendering: 0.00175 (6%) | 200 OK [http://localhost/flatulent]
611
+
612
+
613
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:37:46) [POST]
614
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
615
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423360", "m"=>"18f392425cce062af8dacb5a4a3610bd", "submit"=>"Submit", "t"=>"371v"}}
616
+ Completed in 0.02414 (41 reqs/sec) | Rendering: 0.00176 (7%) | 200 OK [http://localhost/flatulent]
617
+
618
+
619
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:37:52) [POST]
620
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
621
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423366", "m"=>"24d9a78418d487fb42788752a9152b74", "submit"=>"Submit", "t"=>"78yl"}}
622
+ Completed in 0.02412 (41 reqs/sec) | Rendering: 0.00164 (6%) | 200 OK [http://localhost/flatulent]
623
+
624
+
625
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:01) [POST]
626
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
627
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423366", "m"=>"24d9a78418d487fb42788752a9152b74", "submit"=>"Submit", "t"=>"78yl"}}
628
+
629
+
630
+ NoMethodError (undefined method `munge' for Flatulent:Class):
631
+ ../../lib/flatulent.rb:208:in `validate!'
632
+ /app/controllers/flatulent_controller.rb:7:in `index'
633
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
634
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
635
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
636
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
637
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
638
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
639
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
640
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
641
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
642
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
643
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
644
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
645
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
646
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
647
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
648
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
649
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
650
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
651
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
652
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
653
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
654
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
655
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
656
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
657
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
658
+
659
+
660
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
661
+
662
+
663
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:15) [POST]
664
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
665
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423366", "m"=>"24d9a78418d487fb42788752a9152b74", "submit"=>"Submit", "t"=>"78yl"}}
666
+
667
+
668
+ NoMethodError (undefined method `munge' for Flatulent:Class):
669
+ ../../lib/flatulent.rb:208:in `validate!'
670
+ /app/controllers/flatulent_controller.rb:7:in `index'
671
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
672
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
673
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
674
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
675
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
676
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
677
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
678
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
679
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
680
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
681
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
682
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
683
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
684
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
685
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
686
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
687
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
688
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
689
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
690
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
691
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
692
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
693
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
694
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
695
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
696
+
697
+
698
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
699
+
700
+
701
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:23) [POST]
702
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
703
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423366", "m"=>"24d9a78418d487fb42788752a9152b74", "submit"=>"Submit", "t"=>"78yl"}}
704
+
705
+
706
+ Flatulent::TimeToLiveError (Flatulent::TimeToLiveError):
707
+ ../../lib/flatulent.rb:209:in `validate!'
708
+ /app/controllers/flatulent_controller.rb:7:in `index'
709
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
710
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
711
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
712
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
713
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
714
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
715
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
716
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
717
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
718
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
719
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
720
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
721
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
722
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
723
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
724
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
725
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
726
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
727
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
728
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
729
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
730
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
731
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
732
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
733
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
734
+
735
+
736
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
737
+
738
+
739
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:26) [POST]
740
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
741
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423366", "m"=>"24d9a78418d487fb42788752a9152b74", "submit"=>"Submit", "t"=>"78yl"}}
742
+
743
+
744
+ Flatulent::TimeToLiveError (Flatulent::TimeToLiveError):
745
+ ../../lib/flatulent.rb:209:in `validate!'
746
+ /app/controllers/flatulent_controller.rb:7:in `index'
747
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
748
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
749
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
750
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
751
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
752
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
753
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
754
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
755
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
756
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
757
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
758
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
759
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
760
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
761
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
762
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
763
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
764
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
765
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
766
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
767
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
768
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
769
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
770
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
771
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
772
+
773
+
774
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
775
+
776
+
777
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:29) [GET]
778
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
779
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
780
+ Completed in 0.02466 (40 reqs/sec) | Rendering: 0.00203 (8%) | 200 OK [http://localhost/flatulent/]
781
+
782
+
783
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:34) [POST]
784
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
785
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423709", "m"=>"0a087e5edf682d0634ff77ad858577cd", "submit"=>"Submit", "t"=>"ujw5"}}
786
+ Completed in 0.02445 (40 reqs/sec) | Rendering: 0.00194 (7%) | 200 OK [http://localhost/flatulent/]
787
+
788
+
789
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:39) [POST]
790
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
791
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423714", "m"=>"32da6c33721f872cbe29c2a47a2be1b5", "submit"=>"Submit", "t"=>"wpi5"}}
792
+ Completed in 0.02635 (37 reqs/sec) | Rendering: 0.00180 (6%) | 200 OK [http://localhost/flatulent/]
793
+
794
+
795
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:43) [POST]
796
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
797
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423719", "m"=>"f7f83d10458d6142d1775315921bab1f", "submit"=>"Submit", "t"=>"2tab"}}
798
+ Completed in 0.02366 (42 reqs/sec) | Rendering: 0.00164 (6%) | 200 OK [http://localhost/flatulent/]
799
+
800
+
801
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:46) [POST]
802
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
803
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423723", "m"=>"d6a68b8d4caa7518675ff1d52ee8781d", "submit"=>"Submit", "t"=>"zu1g"}}
804
+ Completed in 0.02397 (41 reqs/sec) | Rendering: 0.00158 (6%) | 200 OK [http://localhost/flatulent/]
805
+
806
+
807
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:50) [POST]
808
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
809
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423726", "m"=>"c80f73e8889aa546ba0ab1f0c67004c8", "submit"=>"Submit", "t"=>"gxnn"}}
810
+ Completed in 0.02385 (41 reqs/sec) | Rendering: 0.00158 (6%) | 200 OK [http://localhost/flatulent/]
811
+
812
+
813
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:53) [POST]
814
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
815
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423730", "m"=>"fbc35a52538659df098b556ef3d58784", "submit"=>"Submit", "t"=>"3nky"}}
816
+ Completed in 0.02350 (42 reqs/sec) | Rendering: 0.00160 (6%) | 200 OK [http://localhost/flatulent/]
817
+
818
+
819
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:43:57) [POST]
820
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
821
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423733", "m"=>"d77bc959379776a8890ce7dca4ebe05f", "submit"=>"Submit", "t"=>"fv81"}}
822
+ Completed in 0.08620 (11 reqs/sec) | Rendering: 0.00179 (2%) | 200 OK [http://localhost/flatulent/]
823
+
824
+
825
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:00) [POST]
826
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
827
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423737", "m"=>"631fb43ae38c3f72ce09c1b9ea9c9330", "submit"=>"Submit", "t"=>"3kcm"}}
828
+ Completed in 0.02386 (41 reqs/sec) | Rendering: 0.00169 (7%) | 200 OK [http://localhost/flatulent/]
829
+
830
+
831
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:05) [POST]
832
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
833
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423740", "m"=>"19d16b2c881dbedd499105ea51b9acf5", "submit"=>"Submit", "t"=>"zqba"}}
834
+ Completed in 0.02384 (41 reqs/sec) | Rendering: 0.00176 (7%) | 200 OK [http://localhost/flatulent/]
835
+
836
+
837
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:09) [POST]
838
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
839
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423745", "m"=>"cb24b35ec5549ac023625d2e70bb314a", "submit"=>"Submit", "t"=>"d3pv"}}
840
+ Completed in 0.02370 (42 reqs/sec) | Rendering: 0.00162 (6%) | 200 OK [http://localhost/flatulent/]
841
+
842
+
843
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:14) [POST]
844
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
845
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423749", "m"=>"ef922c2ca251975b0462664417b7bed6", "submit"=>"Submit", "t"=>"4c31"}}
846
+ Completed in 0.02668 (37 reqs/sec) | Rendering: 0.00184 (6%) | 200 OK [http://localhost/flatulent/]
847
+
848
+
849
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:32) [GET]
850
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
851
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
852
+
853
+
854
+ NoMethodError (undefined method `has_key?' for "abc0":String):
855
+ ../../lib/flatulent.rb:216:in `getopts'
856
+ ../../lib/flatulent.rb:62:in `[]'
857
+ ../../lib/flatulent.rb:62:in `initialize'
858
+ ../../lib/flatulent.rb:226:in `new'
859
+ ../../lib/flatulent.rb:226:in `form'
860
+ /app/controllers/flatulent_controller.rb:14:in `index'
861
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
862
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
863
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
864
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
865
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
866
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
867
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
868
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
869
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
870
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
871
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
872
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
873
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
874
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
875
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
876
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
877
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
878
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
879
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
880
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
881
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
882
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
883
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
884
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
885
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
886
+
887
+
888
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
889
+
890
+
891
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:43) [GET]
892
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
893
+ Parameters: {"action"=>"index", "controller"=>"flatulent"}
894
+ Completed in 0.02388 (41 reqs/sec) | Rendering: 0.00159 (6%) | 200 OK [http://localhost/flatulent/]
895
+
896
+
897
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:47) [POST]
898
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
899
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423783", "m"=>"577571be4de9dcce85a041ba0410f29f", "submit"=>"Submit", "t"=>"abco"}}
900
+ Completed in 0.02463 (40 reqs/sec) | Rendering: 0.00205 (8%) | 200 OK [http://localhost/flatulent/]
901
+
902
+
903
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:51) [POST]
904
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
905
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423787", "m"=>"577571be4de9dcce85a041ba0410f29f", "submit"=>"Submit", "t"=>"abc0"}}
906
+ Completed in 0.02369 (42 reqs/sec) | Rendering: 0.00160 (6%) | 200 OK [http://localhost/flatulent/]
907
+
908
+
909
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:44:58) [POST]
910
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
911
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423791", "m"=>"577571be4de9dcce85a041ba0410f29f", "submit"=>"Submit", "t"=>"abcO"}}
912
+ Completed in 0.08785 (11 reqs/sec) | Rendering: 0.00157 (1%) | 200 OK [http://localhost/flatulent/]
913
+
914
+
915
+ Processing FlatulentController#index (for 127.0.0.1 at 2007-07-02 18:45:01) [POST]
916
+ Session ID: 273a40cbb479a92f22b5d87ee4db1310
917
+ Parameters: {"action"=>"index", "controller"=>"flatulent", "flatulent"=>{"v"=>"1183423798", "m"=>"577571be4de9dcce85a041ba0410f29f", "submit"=>"Submit", "t"=>"abcd"}}
918
+
919
+
920
+ Flatulent::MD5Error (Flatulent::MD5Error):
921
+ ../../lib/flatulent.rb:208:in `validate!'
922
+ /app/controllers/flatulent_controller.rb:7:in `index'
923
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
924
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
925
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
926
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
927
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
928
+ /opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
929
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
930
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
931
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
932
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
933
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
934
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
935
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
936
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
937
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
938
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
939
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
940
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
941
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
942
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
943
+ /opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
944
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
945
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
946
+ /opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
947
+ /Users/ahoward/src/ruby/flatulent/flatulent-0.0.0/rails/public/dispatch.fcgi:24
948
+
949
+
950
+ Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)