rackamole 0.3.9 → 0.4.0

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/Gemfile +18 -0
  2. data/Gemfile.lock +68 -0
  3. data/{HISTORY → History.txt} +6 -1
  4. data/Rakefile +24 -31
  5. data/images/mole_logo.png +0 -0
  6. data/images/mole_logo.psd +0 -0
  7. data/images/mole_logo_small.png +0 -0
  8. data/images/mole_logo_small.psd +0 -0
  9. data/lib/rackamole/utils/agent_detect.rb +8 -5
  10. data/samples/rails/moled/README +243 -0
  11. data/samples/rails/moled/Rakefile +10 -0
  12. data/samples/rails/moled/app/controllers/application_controller.rb +21 -0
  13. data/samples/rails/moled/app/controllers/dash_controller.rb +4 -0
  14. data/samples/rails/moled/app/controllers/fred_controller.rb +18 -0
  15. data/samples/rails/moled/app/helpers/application_helper.rb +3 -0
  16. data/samples/rails/moled/app/views/dash/index.html.erb +5 -0
  17. data/samples/rails/moled/app/views/fred/index.html.erb +3 -0
  18. data/samples/rails/moled/app/views/fred/show.html.erb +1 -0
  19. data/samples/rails/moled/app/views/fred/slow.html.erb +3 -0
  20. data/samples/rails/moled/config/boot.rb +110 -0
  21. data/samples/rails/moled/config/database.yml +22 -0
  22. data/samples/rails/moled/config/environment.rb +55 -0
  23. data/samples/rails/moled/config/environments/development.rb +17 -0
  24. data/samples/rails/moled/config/environments/production.rb +28 -0
  25. data/samples/rails/moled/config/environments/test.rb +28 -0
  26. data/samples/rails/moled/config/initializers/backtrace_silencers.rb +7 -0
  27. data/samples/rails/moled/config/initializers/inflections.rb +10 -0
  28. data/samples/rails/moled/config/initializers/mime_types.rb +5 -0
  29. data/samples/rails/moled/config/initializers/new_rails_defaults.rb +19 -0
  30. data/samples/rails/moled/config/initializers/session_store.rb +15 -0
  31. data/samples/rails/moled/config/locales/en.yml +5 -0
  32. data/samples/rails/moled/config/routes.rb +8 -0
  33. data/samples/rails/moled/db/development.sqlite3 +0 -0
  34. data/samples/rails/moled/db/production.sqlite3 +0 -0
  35. data/samples/rails/moled/doc/README_FOR_APP +2 -0
  36. data/samples/rails/moled/log/development.log +1083 -0
  37. data/samples/rails/moled/log/production.log +46 -0
  38. data/samples/rails/moled/log/server.log +0 -0
  39. data/samples/rails/moled/log/test.log +0 -0
  40. data/samples/rails/moled/public/404.html +30 -0
  41. data/samples/rails/moled/public/422.html +30 -0
  42. data/samples/rails/moled/public/500.html +30 -0
  43. data/samples/rails/moled/public/favicon.ico +0 -0
  44. data/samples/rails/moled/public/images/rails.png +0 -0
  45. data/samples/rails/moled/public/javascripts/application.js +2 -0
  46. data/samples/rails/moled/public/javascripts/controls.js +963 -0
  47. data/samples/rails/moled/public/javascripts/dragdrop.js +973 -0
  48. data/samples/rails/moled/public/javascripts/effects.js +1128 -0
  49. data/samples/rails/moled/public/javascripts/prototype.js +4320 -0
  50. data/samples/rails/moled/public/robots.txt +5 -0
  51. data/samples/rails/moled/script/about +4 -0
  52. data/samples/rails/moled/script/console +3 -0
  53. data/samples/rails/moled/script/dbconsole +3 -0
  54. data/samples/rails/moled/script/destroy +3 -0
  55. data/samples/rails/moled/script/generate +3 -0
  56. data/samples/rails/moled/script/performance/benchmarker +3 -0
  57. data/samples/rails/moled/script/performance/profiler +3 -0
  58. data/samples/rails/moled/script/plugin +3 -0
  59. data/samples/rails/moled/script/runner +3 -0
  60. data/samples/rails/moled/script/server +3 -0
  61. data/samples/rails/moled/test/performance/browsing_test.rb +9 -0
  62. data/samples/rails/moled/test/test_helper.rb +38 -0
  63. data/samples/sinatra/moled.rb +84 -0
  64. data/samples/sinatra/public/.DS_Store +0 -0
  65. data/samples/sinatra/public/images/mole_logo.png +0 -0
  66. data/samples/sinatra/public/stylesheets/styles.css +58 -0
  67. data/samples/sinatra/views/index.erb +14 -0
  68. data/samples/sinatra/views/layout.erb +23 -0
  69. data/samples/sinatra/views/normal.erb +1 -0
  70. data/samples/sinatra/views/params.erb +1 -0
  71. data/samples/sinatra/views/post.erb +1 -0
  72. data/samples/sinatra/views/slow.erb +1 -0
  73. data/spec/rackamole/utils/agent_detect_spec.rb +6 -1
  74. data/{tasks → tasks1}/bones.rake +0 -0
  75. data/{tasks → tasks1}/gem.rake +0 -0
  76. data/{tasks → tasks1}/git.rake +0 -0
  77. data/{tasks → tasks1}/notes.rake +0 -0
  78. data/{tasks → tasks1}/post_load.rake +0 -0
  79. data/{tasks → tasks1}/rdoc.rake +0 -0
  80. data/{tasks → tasks1}/rubyforge.rake +0 -0
  81. data/{tasks → tasks1}/setup.rb +0 -0
  82. data/{tasks → tasks1}/spec.rake +0 -0
  83. data/{tasks → tasks1}/svn.rake +0 -0
  84. data/{tasks → tasks1}/test.rake +0 -0
  85. data/{tasks → tasks1}/zentest.rake +0 -0
  86. data/version.txt +1 -0
  87. metadata +106 -20
@@ -0,0 +1,21 @@
1
+ class ApplicationController < ActionController::Base
2
+ include Rackamole::Interceptor
3
+
4
+ helper :all # include all helpers, all the time
5
+ protect_from_forgery # See ActionController::RequestForgeryProtection for details
6
+
7
+ # Scrub sensitive parameters from your log
8
+ # filter_parameter_logging :password
9
+
10
+ before_filter :setup
11
+
12
+ def setup
13
+ session[:user_name] = "Fernand"
14
+ end
15
+
16
+ protected
17
+
18
+ def local_request?
19
+ return false
20
+ end
21
+ end
@@ -0,0 +1,4 @@
1
+ class DashController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,18 @@
1
+ class FredController < ApplicationController
2
+ def index
3
+ session[:fred] = 'hello'
4
+ end
5
+
6
+ def error
7
+ puts "YO ERROR"
8
+ raise 'Oh snap!'
9
+ end
10
+
11
+ def slow
12
+ sleep( 1 )
13
+ end
14
+
15
+ def zob
16
+ @id = params[:id]
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ # Methods added to this helper will be available to all templates in the application.
2
+ module ApplicationHelper
3
+ end
@@ -0,0 +1,5 @@
1
+ <%= link_to "home", "/dash" %>
2
+
3
+ <%= link_to "reg", "/fred" %>
4
+ <%= link_to "error", url_for( :controller => "fred", :action => "error") %>
5
+ <%= link_to "slow", "/fred/slow" %>
@@ -0,0 +1,3 @@
1
+ <%= link_to "home", "/dash" %>
2
+
3
+ <h1>Hello World</h1>
@@ -0,0 +1 @@
1
+ <h1>Hello <%=@id%></h1>
@@ -0,0 +1,3 @@
1
+ <%= link_to "home", "/dash" %>
2
+
3
+ <h1>I am slow</h1>
@@ -0,0 +1,110 @@
1
+ # Don't change this file!
2
+ # Configure your app in config/environment.rb and config/environments/*.rb
3
+
4
+ RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
5
+
6
+ module Rails
7
+ class << self
8
+ def boot!
9
+ unless booted?
10
+ preinitialize
11
+ pick_boot.run
12
+ end
13
+ end
14
+
15
+ def booted?
16
+ defined? Rails::Initializer
17
+ end
18
+
19
+ def pick_boot
20
+ (vendor_rails? ? VendorBoot : GemBoot).new
21
+ end
22
+
23
+ def vendor_rails?
24
+ File.exist?("#{RAILS_ROOT}/vendor/rails")
25
+ end
26
+
27
+ def preinitialize
28
+ load(preinitializer_path) if File.exist?(preinitializer_path)
29
+ end
30
+
31
+ def preinitializer_path
32
+ "#{RAILS_ROOT}/config/preinitializer.rb"
33
+ end
34
+ end
35
+
36
+ class Boot
37
+ def run
38
+ load_initializer
39
+ Rails::Initializer.run(:set_load_path)
40
+ end
41
+ end
42
+
43
+ class VendorBoot < Boot
44
+ def load_initializer
45
+ require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
46
+ Rails::Initializer.run(:install_gem_spec_stubs)
47
+ Rails::GemDependency.add_frozen_gem_path
48
+ end
49
+ end
50
+
51
+ class GemBoot < Boot
52
+ def load_initializer
53
+ self.class.load_rubygems
54
+ load_rails_gem
55
+ require 'initializer'
56
+ end
57
+
58
+ def load_rails_gem
59
+ if version = self.class.gem_version
60
+ gem 'rails', version
61
+ else
62
+ gem 'rails'
63
+ end
64
+ rescue Gem::LoadError => load_error
65
+ $stderr.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.)
66
+ exit 1
67
+ end
68
+
69
+ class << self
70
+ def rubygems_version
71
+ Gem::RubyGemsVersion rescue nil
72
+ end
73
+
74
+ def gem_version
75
+ if defined? RAILS_GEM_VERSION
76
+ RAILS_GEM_VERSION
77
+ elsif ENV.include?('RAILS_GEM_VERSION')
78
+ ENV['RAILS_GEM_VERSION']
79
+ else
80
+ parse_gem_version(read_environment_rb)
81
+ end
82
+ end
83
+
84
+ def load_rubygems
85
+ require 'rubygems'
86
+ min_version = '1.3.1'
87
+ unless rubygems_version >= min_version
88
+ $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
89
+ exit 1
90
+ end
91
+
92
+ rescue LoadError
93
+ $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
94
+ exit 1
95
+ end
96
+
97
+ def parse_gem_version(text)
98
+ $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
99
+ end
100
+
101
+ private
102
+ def read_environment_rb
103
+ File.read("#{RAILS_ROOT}/config/environment.rb")
104
+ end
105
+ end
106
+ end
107
+ end
108
+
109
+ # All that for this:
110
+ Rails.boot!
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3-ruby (not necessary on OS X Leopard)
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,55 @@
1
+ # Be sure to restart your server when you modify this file
2
+
3
+ # Specifies gem version of Rails to use when vendor/rails is not present
4
+ RAILS_GEM_VERSION = '2.3.2' unless defined? RAILS_GEM_VERSION
5
+
6
+ # Bootstrap the Rails environment, frameworks, and default configuration
7
+ require File.join(File.dirname(__FILE__), 'boot')
8
+
9
+ Rails::Initializer.run do |config|
10
+
11
+ require 'rackamole'
12
+ config.middleware.use Rack::Mole, {
13
+ :app_name => "Railso",
14
+ :user_key => :user_name,
15
+ :expiration => 60,
16
+ :perf_threshold => 0.2,
17
+ # :mole_excludes => [],
18
+ :store => Rackamole::Store::MongoDb.new( :db_name => "mole_railso_#{RAILS_ENV}_mdb" ),
19
+
20
+ # :twitter => { :username => 'moled', :password => 'fernand~1', :alert_on => [Rackamole.perf, Rackamole.fault] },
21
+ :user_key => :user_name
22
+ }
23
+
24
+ # Settings in config/environments/* take precedence over those specified here.
25
+ # Application configuration should go into files in config/initializers
26
+ # -- all .rb files in that directory are automatically loaded.
27
+
28
+ # Add additional load paths for your own custom dirs
29
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
30
+
31
+ # Specify gems that this application depends on and have them installed with rake gems:install
32
+ # config.gem "bj"
33
+ # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
34
+ # config.gem "sqlite3-ruby", :lib => "sqlite3"
35
+ # config.gem "aws-s3", :lib => "aws/s3"
36
+
37
+ # Only load the plugins named here, in the order given (default is alphabetical).
38
+ # :all can be used as a placeholder for all plugins not explicitly named
39
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
40
+
41
+ # Skip frameworks you're not going to use. To use Rails without a database,
42
+ # you must remove the Active Record framework.
43
+ config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
44
+
45
+ # Activate observers that should always be running
46
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
47
+
48
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
49
+ # Run "rake -D time" for a list of tasks for finding time zone names.
50
+ config.time_zone = 'UTC'
51
+
52
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
53
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
54
+ # config.i18n.default_locale = :de
55
+ end
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,28 @@
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
+ # Full error reports are disabled and caching is turned on
8
+ config.action_controller.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # See everything in the log (default is :info)
13
+ # config.log_level = :debug
14
+
15
+ # Use a different logger for distributed setups
16
+ # config.logger = SyslogLogger.new
17
+
18
+ # Use a different cache store in production
19
+ # config.cache_store = :mem_cache_store
20
+
21
+ # Enable serving of images, stylesheets, and javascripts from an asset server
22
+ # config.action_controller.asset_host = "http://assets.example.com"
23
+
24
+ # Disable delivery errors, bad email addresses will be ignored
25
+ # config.action_mailer.raise_delivery_errors = false
26
+
27
+ # Enable threaded mode
28
+ # config.threadsafe!
@@ -0,0 +1,28 @@
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
+ config.action_view.cache_template_loading = true
16
+
17
+ # Disable request forgery protection in test environment
18
+ config.action_controller.allow_forgery_protection = false
19
+
20
+ # Tell Action Mailer not to deliver emails to the real world.
21
+ # The :test delivery method accumulates sent emails in the
22
+ # ActionMailer::Base.deliveries array.
23
+ config.action_mailer.delivery_method = :test
24
+
25
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
26
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
27
+ # like if you have constraints or database-specific column types
28
+ # config.active_record.schema_format = :sql
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying do debug a problem that might steem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,19 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # These settings change the behavior of Rails 2 apps and will be defaults
4
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
5
+
6
+ if defined?(ActiveRecord)
7
+ # Include Active Record class name as root for JSON serialized output.
8
+ ActiveRecord::Base.include_root_in_json = true
9
+
10
+ # Store the full class name (including module namespace) in STI type column.
11
+ ActiveRecord::Base.store_full_sti_class = true
12
+ end
13
+
14
+ # Use ISO 8601 format for JSON serialized times and dates.
15
+ ActiveSupport.use_standard_json_time_format = true
16
+
17
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
18
+ # if you're including raw json in an HTML page.
19
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying cookie session data integrity.
4
+ # If you change this key, all old sessions will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ ActionController::Base.session = {
8
+ :key => '_moled_session',
9
+ :secret => 'e1f7b6496e9173ad9b09622a244b1a1d95e463cfdd79a4a79b974ac4633ed7e17fad7f4555a8e98c9cc19579c984e3fb82e09fb19d84ed648bc0d953206362d0'
10
+ }
11
+
12
+ # Use the database for sessions instead of the cookie-based default,
13
+ # which shouldn't be used to store highly confidential information
14
+ # (create the session table with "rake db:sessions:create")
15
+ # ActionController::Base.session_store = :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,8 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.root :controller => 'dash'
3
+
4
+ # map.resources :fred
5
+
6
+ map.connect ':controller/:action/:id'
7
+ map.connect ':controller/:action/:id.:format'
8
+ end
File without changes
File without changes
@@ -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 doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,1083 @@
1
+
2
+
3
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-14 01:00:42) [GET]
4
+
5
+ NoMethodError (undefined method `call' for FredController:Class):
6
+
7
+
8
+ Rendered rescues/_trace (20.6ms)
9
+ Rendered rescues/_request_and_response (1.1ms)
10
+ Rendering rescues/layout (internal_server_error)
11
+
12
+
13
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-14 01:07:05) [GET]
14
+
15
+ NoMethodError (undefined method `call' for FredController:Class):
16
+
17
+
18
+ Rendered rescues/_trace (20.9ms)
19
+ Rendered rescues/_request_and_response (1.2ms)
20
+ Rendering rescues/layout (internal_server_error)
21
+
22
+
23
+ Processing FredController#index (for 127.0.0.1 at 2009-11-14 01:09:50) [GET]
24
+ Rendering fred/index
25
+ Completed in 113ms (View: 4, DB: 0) | 200 OK [http://localhost/fred]
26
+
27
+
28
+ Processing FredController#index (for 127.0.0.1 at 2009-11-14 01:18:26) [GET]
29
+ Rendering fred/index
30
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://localhost/fred]
31
+
32
+
33
+ Processing FredController#index (for 127.0.0.1 at 2009-11-15 11:36:33) [GET]
34
+ Rendering fred/index
35
+ Completed in 120ms (View: 4, DB: 0) | 200 OK [http://localhost/fred]
36
+
37
+
38
+ Processing FredController#show (for 127.0.0.1 at 2009-11-15 11:36:59) [GET]
39
+ Parameters: {"id"=>"list"}
40
+ Rendering fred/show
41
+ Completed in 4ms (View: 2, DB: 0) | 200 OK [http://localhost/fred/list]
42
+
43
+
44
+ Processing FredController#edit (for 127.0.0.1 at 2009-11-15 11:38:36) [GET]
45
+ Parameters: {"id"=>"10"}
46
+
47
+ RuntimeError (Oh snap!):
48
+ app/controllers/fred_controller.rb:7:in `edit'
49
+
50
+ Rendered rescues/_trace (27.9ms)
51
+ Rendered rescues/_request_and_response (1.2ms)
52
+ Rendering rescues/layout (internal_server_error)
53
+
54
+
55
+ Processing FredController#edit (for 127.0.0.1 at 2009-11-15 11:44:54) [GET]
56
+ Parameters: {"id"=>"10"}
57
+
58
+ RuntimeError (Oh snap!):
59
+ app/controllers/fred_controller.rb:7:in `edit'
60
+
61
+ Rendered rescues/_trace (29.1ms)
62
+ Rendered rescues/_request_and_response (1.2ms)
63
+ Rendering rescues/layout (internal_server_error)
64
+
65
+
66
+ Processing FredController#edit (for 127.0.0.1 at 2009-11-15 11:53:40) [GET]
67
+ Parameters: {"id"=>"10"}
68
+
69
+ RuntimeError (Oh snap!):
70
+ app/controllers/fred_controller.rb:7:in `edit'
71
+
72
+ Rendered rescues/_trace (28.4ms)
73
+ Rendered rescues/_request_and_response (1.3ms)
74
+ Rendering rescues/layout (internal_server_error)
75
+
76
+
77
+ Processing FredController#show (for 127.0.0.1 at 2009-11-15 11:54:08) [GET]
78
+ Parameters: {"id"=>"10"}
79
+ Rendering fred/show
80
+ Completed in 7ms (View: 6, DB: 0) | 200 OK [http://localhost/fred/10]
81
+
82
+
83
+ Processing FredController#index (for 127.0.0.1 at 2009-11-28 13:08:32) [GET]
84
+ Rendering fred/index
85
+ Completed in 135ms (View: 11, DB: 0) | 200 OK [http://localhost/fred]
86
+
87
+
88
+ Processing FredController#index (for 127.0.0.1 at 2009-11-28 13:08:40) [GET]
89
+ Rendering fred/index
90
+ Completed in 2ms (View: 0, DB: 0) | 200 OK [http://localhost/fred]
91
+
92
+
93
+ Processing FredController#index (for 127.0.0.1 at 2009-11-28 13:09:19) [GET]
94
+ Rendering fred/index
95
+ Completed in 1004ms (View: 2, DB: 0) | 200 OK [http://localhost/fred]
96
+
97
+
98
+ Processing FredController#index (for 127.0.0.1 at 2009-11-28 13:09:23) [GET]
99
+ Rendering fred/index
100
+ Completed in 1002ms (View: 1, DB: 0) | 200 OK [http://localhost/fred]
101
+
102
+
103
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:02:44) [GET]
104
+ Rendering fred/index
105
+ Completed in 1014ms (View: 7, DB: 0) | 200 OK [http://localhost/fred]
106
+
107
+
108
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:04:11) [GET]
109
+ Rendering fred/index
110
+ Completed in 1003ms (View: 1, DB: 0) | 200 OK [http://localhost/fred]
111
+
112
+
113
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:04:26) [GET]
114
+ Rendering fred/index
115
+ Completed in 1009ms (View: 5, DB: 0) | 200 OK [http://localhost/fred]
116
+
117
+
118
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:05:41) [GET]
119
+ Rendering fred/index
120
+ Completed in 1006ms (View: 4, DB: 0) | 200 OK [http://localhost/fred]
121
+ /!\ FAILSAFE /!\ Mon, 18 Jan 2010 11:10:04 -0700
122
+ Status: 500 Internal Server Error
123
+ Illegal route: the :controller must be specified!
124
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/builder.rb:175:in `build'
125
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:308:in `add_route'
126
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:316:in `add_named_route'
127
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:57:in `method_missing'
128
+ /Users/fgaliana/work/git/rackamole/samples/rails/moled/config/routes.rb:2
129
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:226:in `draw'
130
+ /Users/fgaliana/work/git/rackamole/samples/rails/moled/config/routes.rb:1
131
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:145:in `load_without_new_constant_marking'
132
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:145:in `load'
133
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
134
+ /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:145:in `load'
135
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:286:in `load_routes!'
136
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:286:in `each'
137
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:286:in `load_routes!'
138
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:266:in `load!'
139
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/routing/route_set.rb:281:in `reload'
140
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/dispatcher.rb:59:in `reload_application'
141
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/reloader.rb:8:in `call'
142
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/failsafe.rb:11:in `call'
143
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call'
144
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `synchronize'
145
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/lock.rb:11:in `call'
146
+ /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/dispatcher.rb:106:in `call'
147
+ /opt/local/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/rails/rack/static.rb:31:in `call'
148
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:46:in `call'
149
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `each'
150
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/urlmap.rb:40:in `call'
151
+ /opt/local/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/rails/rack/log_tailer.rb:17:in `call'
152
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/content_length.rb:13:in `call'
153
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/handler/webrick.rb:50:in `service'
154
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
155
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
156
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
157
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
158
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
159
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
160
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
161
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
162
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
163
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
164
+ /opt/local/lib/ruby/gems/1.8/gems/rack-1.0.1/lib/rack/handler/webrick.rb:14:in `run'
165
+ /opt/local/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/commands/server.rb:111
166
+ /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
167
+ /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
168
+ script/server:3
169
+
170
+
171
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:10:41) [GET]
172
+ Rendering dash/index
173
+ Completed in 70ms (View: 69 | 200 OK [http://localhost/]
174
+
175
+
176
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:10:44) [GET]
177
+ Rendering dash/index
178
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
179
+
180
+
181
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:10:45) [GET]
182
+ Rendering fred/index
183
+ Completed in 1006ms (View: 4 | 200 OK [http://localhost/fred]
184
+
185
+
186
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:12:41) [GET]
187
+ Rendering dash/index
188
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
189
+
190
+
191
+ Processing ApplicationController#index (for 127.0.0.1 at 2010-01-18 11:12:42) [GET]
192
+
193
+ SystemStackError (stack level too deep):
194
+ app/controllers/fred_controller.rb:15:in `params'
195
+ app/controllers/fred_controller.rb:15:in `params'
196
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
197
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
198
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
199
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
200
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
201
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
202
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
203
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
204
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
205
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
206
+
207
+ Rendered rescues/_trace (20.1ms)
208
+ Rendered rescues/_request_and_response (1.0ms)
209
+ Rendering rescues/layout (internal_server_error)
210
+
211
+
212
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:12:58) [GET]
213
+ Rendering fred/index
214
+ Completed in 7ms (View: 5 | 200 OK [http://localhost/fred]
215
+
216
+
217
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:13:00) [GET]
218
+ Rendering dash/index
219
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/dash]
220
+
221
+
222
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:13:35) [GET]
223
+ Rendering dash/index
224
+ Completed in 101ms (View: 99 | 200 OK [http://localhost/dash]
225
+
226
+
227
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:13:38) [GET]
228
+ Rendering fred/index
229
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
230
+
231
+
232
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:13:39) [GET]
233
+ Rendering dash/index
234
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
235
+
236
+
237
+ Processing FredController#show (for 127.0.0.1 at 2010-01-18 11:13:40) [GET]
238
+ Parameters: {"id"=>"error"}
239
+ Rendering fred/show
240
+ Completed in 4ms (View: 3 | 200 OK [http://localhost/fred/error]
241
+
242
+
243
+ Processing FredController#show (for 127.0.0.1 at 2010-01-18 11:13:44) [GET]
244
+ Parameters: {"id"=>"slow"}
245
+ Rendering fred/show
246
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred/slow]
247
+
248
+
249
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:14:08) [GET]
250
+ Rendering dash/index
251
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
252
+
253
+
254
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:14:10) [GET]
255
+ Rendering dash/index
256
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
257
+
258
+
259
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:14:13) [GET]
260
+ Rendering dash/index
261
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
262
+
263
+
264
+ Processing FredController#show (for 127.0.0.1 at 2010-01-18 11:14:25) [GET]
265
+ Parameters: {"id"=>"error"}
266
+ Rendering fred/show
267
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred/error]
268
+
269
+
270
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:15:18) [GET]
271
+ Rendering dash/index
272
+ Completed in 5ms (View: 3 | 200 OK [http://localhost/dash]
273
+
274
+
275
+ Processing FredController#show (for 127.0.0.1 at 2010-01-18 11:15:21) [GET]
276
+ Parameters: {"id"=>"error"}
277
+ Rendering fred/show
278
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/fred/error]
279
+
280
+
281
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:16:30) [GET]
282
+ Rendering dash/index
283
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
284
+
285
+
286
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 11:16:34) [GET]
287
+
288
+ RuntimeError (Oh snap!):
289
+ app/controllers/fred_controller.rb:8:in `error'
290
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
291
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
292
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
293
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
294
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
295
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
296
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
297
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
298
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
299
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
300
+
301
+ Rendered rescues/_trace (22.9ms)
302
+ Rendered rescues/_request_and_response (0.2ms)
303
+ Rendering rescues/layout (internal_server_error)
304
+
305
+
306
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:16:39) [GET]
307
+ Rendering fred/index
308
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
309
+
310
+
311
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:16:42) [GET]
312
+ Rendering dash/index
313
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
314
+
315
+
316
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 11:16:44) [GET]
317
+
318
+ RuntimeError (Oh snap!):
319
+ app/controllers/fred_controller.rb:8:in `error'
320
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
321
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
322
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
323
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
324
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
325
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
326
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
327
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
328
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
329
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
330
+
331
+ Rendered rescues/_trace (29.1ms)
332
+ Rendered rescues/_request_and_response (0.3ms)
333
+ Rendering rescues/layout (internal_server_error)
334
+
335
+
336
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 11:16:47) [GET]
337
+ Rendering fred/slow
338
+ Completed in 1004ms (View: 3 | 200 OK [http://localhost/fred/slow]
339
+
340
+
341
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:16:50) [GET]
342
+ Rendering dash/index
343
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
344
+
345
+
346
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:21:35) [GET]
347
+ Rendering dash/index
348
+ Completed in 5ms (View: 4 | 200 OK [http://localhost/dash]
349
+
350
+
351
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 11:21:45) [GET]
352
+ Rendering fred/index
353
+ Completed in 6ms (View: 4 | 200 OK [http://localhost/fred]
354
+
355
+
356
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:21:46) [GET]
357
+ Rendering dash/index
358
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
359
+
360
+
361
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 11:21:47) [GET]
362
+
363
+ RuntimeError (Oh snap!):
364
+ app/controllers/fred_controller.rb:8:in `error'
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
+
376
+ Rendered rescues/_trace (24.0ms)
377
+ Rendered rescues/_request_and_response (1.1ms)
378
+ Rendering rescues/layout (internal_server_error)
379
+
380
+
381
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 11:21:50) [GET]
382
+ Rendering fred/slow
383
+ Completed in 1004ms (View: 3 | 200 OK [http://localhost/fred/slow]
384
+
385
+
386
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 11:21:52) [GET]
387
+ Rendering dash/index
388
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
389
+
390
+
391
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:17:53) [GET]
392
+ Rendering dash/index
393
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
394
+
395
+
396
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:17:55) [GET]
397
+ Rendering dash/index
398
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
399
+
400
+
401
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 12:17:56) [GET]
402
+ Rendering fred/index
403
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
404
+
405
+
406
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:17:58) [GET]
407
+ Rendering dash/index
408
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
409
+
410
+
411
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 12:18:21) [GET]
412
+ Rendering fred/slow
413
+ Completed in 1003ms (View: 1 | 200 OK [http://localhost/fred/slow]
414
+
415
+
416
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:18:24) [GET]
417
+ Rendering dash/index
418
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
419
+
420
+
421
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 12:18:25) [GET]
422
+
423
+ RuntimeError (Oh snap!):
424
+ app/controllers/fred_controller.rb:8:in `error'
425
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
426
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
427
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
428
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
429
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
430
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
431
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
432
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
433
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
434
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
435
+
436
+ Rendered rescues/_trace (23.9ms)
437
+ Rendered rescues/_request_and_response (0.2ms)
438
+ Rendering rescues/layout (internal_server_error)
439
+
440
+
441
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:04) [GET]
442
+ Rendering dash/index
443
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
444
+
445
+
446
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 12:52:05) [GET]
447
+ Rendering fred/index
448
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
449
+
450
+
451
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:06) [GET]
452
+ Rendering dash/index
453
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
454
+
455
+
456
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 12:52:07) [GET]
457
+
458
+ RuntimeError (Oh snap!):
459
+ app/controllers/fred_controller.rb:8:in `error'
460
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
461
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
462
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
463
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
464
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
465
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
466
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
467
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
468
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
469
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
470
+
471
+ Rendered rescues/_trace (134.0ms)
472
+ Rendered rescues/_request_and_response (0.3ms)
473
+ Rendering rescues/layout (internal_server_error)
474
+
475
+
476
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 12:52:10) [GET]
477
+ Rendering fred/slow
478
+ Completed in 1003ms (View: 1 | 200 OK [http://localhost/fred/slow]
479
+
480
+
481
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:12) [GET]
482
+ Rendering dash/index
483
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
484
+
485
+
486
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:13) [GET]
487
+ Rendering dash/index
488
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
489
+
490
+
491
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:15) [GET]
492
+ Rendering dash/index
493
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
494
+
495
+
496
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:15) [GET]
497
+ Rendering dash/index
498
+ Completed in 4ms (View: 2 | 200 OK [http://localhost/dash]
499
+
500
+
501
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:15) [GET]
502
+ Rendering dash/index
503
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/dash]
504
+
505
+
506
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 12:52:15) [GET]
507
+ Rendering dash/index
508
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
509
+
510
+
511
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 22:33:32) [GET]
512
+ Rendering dash/index
513
+ Completed in 10ms (View: 4 | 200 OK [http://localhost/]
514
+
515
+
516
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 22:35:30) [GET]
517
+ Rendering fred/index
518
+ Completed in 6ms (View: 5 | 200 OK [http://localhost/fred]
519
+
520
+
521
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 22:35:31) [GET]
522
+ Rendering dash/index
523
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
524
+
525
+
526
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 22:35:32) [GET]
527
+
528
+ RuntimeError (Oh snap!):
529
+ app/controllers/fred_controller.rb:8:in `error'
530
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
531
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
532
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
533
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
534
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
535
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
536
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
537
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
538
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
539
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
540
+
541
+ Rendered rescues/_trace (23.9ms)
542
+ Rendered rescues/_request_and_response (1.3ms)
543
+ Rendering rescues/layout (internal_server_error)
544
+
545
+
546
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 22:35:38) [GET]
547
+ Rendering fred/slow
548
+ Completed in 1006ms (View: 4 | 200 OK [http://localhost/fred/slow]
549
+
550
+
551
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 22:55:52) [GET]
552
+ Rendering dash/index
553
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
554
+
555
+
556
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 22:55:53) [GET]
557
+ Rendering fred/index
558
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
559
+
560
+
561
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 22:55:55) [GET]
562
+ Rendering dash/index
563
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
564
+
565
+
566
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 22:55:55) [GET]
567
+
568
+ RuntimeError (Oh snap!):
569
+ app/controllers/fred_controller.rb:8:in `error'
570
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
571
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
572
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
573
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
574
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
575
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
576
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
577
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
578
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
579
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
580
+
581
+ Rendered rescues/_trace (118.0ms)
582
+ Rendered rescues/_request_and_response (0.2ms)
583
+ Rendering rescues/layout (internal_server_error)
584
+
585
+
586
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 22:55:58) [GET]
587
+ Rendering fred/slow
588
+ Completed in 1003ms (View: 1 | 200 OK [http://localhost/fred/slow]
589
+
590
+
591
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 22:56:01) [GET]
592
+ Rendering dash/index
593
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
594
+
595
+
596
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 22:56:02) [GET]
597
+ Rendering fred/slow
598
+ Completed in 1003ms (View: 1 | 200 OK [http://localhost/fred/slow]
599
+
600
+
601
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 23:22:40) [GET]
602
+ Rendering dash/index
603
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
604
+
605
+
606
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 23:22:52) [GET]
607
+
608
+ RuntimeError (Oh snap!):
609
+ app/controllers/fred_controller.rb:8:in `error'
610
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
611
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
612
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
613
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
614
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
615
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
616
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
617
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
618
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
619
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
620
+
621
+ Rendered rescues/_trace (27.2ms)
622
+ Rendered rescues/_request_and_response (0.3ms)
623
+ Rendering rescues/layout (internal_server_error)
624
+
625
+
626
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 23:23:01) [GET]
627
+
628
+ RuntimeError (Oh snap!):
629
+ app/controllers/fred_controller.rb:8:in `error'
630
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
631
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
632
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
633
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
634
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
635
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
636
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
637
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
638
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
639
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
640
+
641
+ Rendered rescues/_trace (22.9ms)
642
+ Rendered rescues/_request_and_response (0.2ms)
643
+ Rendering rescues/layout (internal_server_error)
644
+
645
+
646
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 23:23:08) [GET]
647
+ Rendering fred/slow
648
+ Completed in 1003ms (View: 1 | 200 OK [http://localhost/fred/slow]
649
+
650
+
651
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 23:23:11) [GET]
652
+ Rendering dash/index
653
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
654
+
655
+
656
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 23:23:44) [GET]
657
+
658
+ RuntimeError (Oh snap!):
659
+ app/controllers/fred_controller.rb:8:in `error'
660
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
661
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
662
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
663
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
664
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
665
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
666
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
667
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
668
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
669
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
670
+
671
+ Rendered rescues/_trace (27.5ms)
672
+ Rendered rescues/_request_and_response (0.3ms)
673
+ Rendering rescues/layout (internal_server_error)
674
+
675
+
676
+ Processing FredController#index (for 127.0.0.1 at 2010-01-18 23:23:49) [GET]
677
+ Rendering fred/index
678
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
679
+
680
+
681
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 23:23:51) [GET]
682
+ Rendering dash/index
683
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
684
+
685
+
686
+ Processing FredController#error (for 127.0.0.1 at 2010-01-18 23:23:59) [GET]
687
+
688
+ RuntimeError (Oh snap!):
689
+ app/controllers/fred_controller.rb:8:in `error'
690
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
691
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
692
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
693
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
694
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
695
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
696
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
697
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
698
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
699
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
700
+
701
+ Rendered rescues/_trace (23.3ms)
702
+ Rendered rescues/_request_and_response (0.3ms)
703
+ Rendering rescues/layout (internal_server_error)
704
+
705
+
706
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-18 23:24:12) [GET]
707
+ Rendering fred/slow
708
+ Completed in 1003ms (View: 1 | 200 OK [http://localhost/fred/slow]
709
+
710
+
711
+ Processing DashController#index (for 127.0.0.1 at 2010-01-18 23:24:15) [GET]
712
+ Rendering dash/index
713
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/dash]
714
+
715
+
716
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:13:27) [GET]
717
+ Rendering dash/index
718
+ Completed in 11ms (View: 4 | 200 OK [http://localhost/]
719
+
720
+
721
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:14:48) [GET]
722
+ Rendering dash/index
723
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/]
724
+
725
+
726
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:15:25) [GET]
727
+ Rendering dash/index
728
+ Completed in 5ms (View: 4 | 200 OK [http://localhost/]
729
+
730
+
731
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:15:39) [GET]
732
+ Rendering dash/index
733
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
734
+
735
+
736
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:22) [GET]
737
+ Rendering dash/index
738
+ Completed in 5ms (View: 4 | 200 OK [http://localhost/]
739
+
740
+
741
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:34) [GET]
742
+ Rendering dash/index
743
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
744
+
745
+
746
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:38) [GET]
747
+ Rendering dash/index
748
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
749
+
750
+
751
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:39) [GET]
752
+ Rendering dash/index
753
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
754
+
755
+
756
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:40) [GET]
757
+ Rendering dash/index
758
+ Completed in 4ms (View: 1 | 200 OK [http://localhost/dash]
759
+
760
+
761
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:40) [GET]
762
+ Rendering dash/index
763
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
764
+
765
+
766
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:41) [GET]
767
+ Rendering dash/index
768
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
769
+
770
+
771
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:46) [GET]
772
+ Rendering dash/index
773
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
774
+
775
+
776
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:48) [GET]
777
+ Rendering dash/index
778
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
779
+
780
+
781
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:49) [GET]
782
+ Rendering dash/index
783
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
784
+
785
+
786
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:50) [GET]
787
+ Rendering dash/index
788
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
789
+
790
+
791
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:16:51) [GET]
792
+ Rendering dash/index
793
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
794
+
795
+
796
+ Processing FredController#index (for 127.0.0.1 at 2010-01-21 21:16:54) [GET]
797
+ Rendering fred/index
798
+ Completed in 76ms (View: 74 | 200 OK [http://localhost/fred]
799
+
800
+
801
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:11) [GET]
802
+ Rendering dash/index
803
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/dash]
804
+
805
+
806
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:20) [GET]
807
+ Rendering dash/index
808
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
809
+
810
+
811
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:27) [GET]
812
+ Rendering dash/index
813
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/]
814
+
815
+
816
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:27) [GET]
817
+ Rendering dash/index
818
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
819
+
820
+
821
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:27) [GET]
822
+ Rendering dash/index
823
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/]
824
+
825
+
826
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:28) [GET]
827
+ Rendering dash/index
828
+ Completed in 5ms (View: 2 | 200 OK [http://localhost/]
829
+
830
+
831
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:31) [GET]
832
+ Rendering dash/index
833
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
834
+
835
+
836
+ Processing FredController#index (for 127.0.0.1 at 2010-01-21 21:17:33) [GET]
837
+ Rendering fred/index
838
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/fred]
839
+
840
+
841
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:36) [GET]
842
+ Rendering dash/index
843
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
844
+
845
+
846
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:38) [GET]
847
+ Rendering dash/index
848
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
849
+
850
+
851
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:39) [GET]
852
+ Rendering dash/index
853
+ Completed in 72ms (View: 1 | 200 OK [http://localhost/dash]
854
+
855
+
856
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:41) [GET]
857
+ Rendering dash/index
858
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
859
+
860
+
861
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:42) [GET]
862
+ Rendering dash/index
863
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
864
+
865
+
866
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:17:59) [GET]
867
+ Rendering dash/index
868
+ Completed in 4ms (View: 1 | 200 OK [http://localhost/dash]
869
+
870
+
871
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:05) [GET]
872
+ Rendering dash/index
873
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
874
+
875
+
876
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:10) [GET]
877
+ Rendering dash/index
878
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
879
+
880
+
881
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:10) [GET]
882
+ Rendering dash/index
883
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
884
+
885
+
886
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:11) [GET]
887
+ Rendering dash/index
888
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
889
+
890
+
891
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:11) [GET]
892
+ Rendering dash/index
893
+ Completed in 3ms (View: 2 | 200 OK [http://localhost/]
894
+
895
+
896
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:12) [GET]
897
+ Rendering dash/index
898
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
899
+
900
+
901
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:13) [GET]
902
+ Rendering dash/index
903
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
904
+
905
+
906
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:14) [GET]
907
+ Rendering dash/index
908
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
909
+
910
+
911
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:15) [GET]
912
+ Rendering dash/index
913
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
914
+
915
+
916
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:15) [GET]
917
+ Rendering dash/index
918
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
919
+
920
+
921
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:15) [GET]
922
+ Rendering dash/index
923
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
924
+
925
+
926
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:15) [GET]
927
+ Rendering dash/index
928
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
929
+
930
+
931
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:15) [GET]
932
+ Rendering dash/index
933
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/]
934
+
935
+
936
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:18) [GET]
937
+ Rendering dash/index
938
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
939
+
940
+
941
+ Processing FredController#index (for 127.0.0.1 at 2010-01-21 21:18:19) [GET]
942
+ Rendering fred/index
943
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/fred]
944
+
945
+
946
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:18:21) [GET]
947
+ Rendering dash/index
948
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
949
+
950
+
951
+ Processing FredController#error (for 127.0.0.1 at 2010-01-21 21:18:21) [GET]
952
+
953
+ RuntimeError (Oh snap!):
954
+ app/controllers/fred_controller.rb:8:in `error'
955
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
956
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
957
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
958
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
959
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
960
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
961
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
962
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
963
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
964
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
965
+
966
+ Rendered rescues/_trace (117.6ms)
967
+ Rendered rescues/_request_and_response (1.2ms)
968
+ Rendering rescues/layout (internal_server_error)
969
+
970
+
971
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-21 21:18:52) [GET]
972
+ Rendering fred/slow
973
+ Completed in 1007ms (View: 6 | 200 OK [http://localhost/fred/slow]
974
+
975
+
976
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:21:40) [GET]
977
+ Rendering dash/index
978
+ Completed in 5ms (View: 4 | 200 OK [http://localhost/dash]
979
+
980
+
981
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:21:42) [GET]
982
+ Rendering dash/index
983
+ Completed in 3ms (View: 1 | 200 OK [http://localhost/dash]
984
+
985
+
986
+ Processing FredController#index (for 127.0.0.1 at 2010-01-21 21:21:44) [GET]
987
+ Rendering fred/index
988
+ Completed in 6ms (View: 4 | 200 OK [http://localhost/fred]
989
+
990
+
991
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:21:45) [GET]
992
+ Rendering dash/index
993
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
994
+
995
+
996
+ Processing FredController#error (for 127.0.0.1 at 2010-01-21 21:21:46) [GET]
997
+
998
+ RuntimeError (Oh snap!):
999
+ app/controllers/fred_controller.rb:8:in `error'
1000
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1001
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1002
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1003
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1004
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1005
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1006
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1007
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1008
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1009
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1010
+
1011
+ Rendered rescues/_trace (25.0ms)
1012
+ Rendered rescues/_request_and_response (1.0ms)
1013
+ Rendering rescues/layout (internal_server_error)
1014
+
1015
+
1016
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-21 21:21:58) [GET]
1017
+ Rendering fred/slow
1018
+ Completed in 1004ms (View: 3 | 200 OK [http://localhost/fred/slow]
1019
+
1020
+
1021
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:22:01) [GET]
1022
+ Rendering dash/index
1023
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
1024
+
1025
+
1026
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:22:13) [GET]
1027
+ Rendering dash/index
1028
+ Completed in 9ms (View: 1 | 200 OK [http://localhost/]
1029
+
1030
+
1031
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:22:46) [GET]
1032
+ Rendering dash/index
1033
+ Completed in 2ms (View: 1 | 200 OK [http://localhost/dash]
1034
+
1035
+
1036
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 21:23:16) [GET]
1037
+ Rendering dash/index
1038
+ Completed in 7ms (View: 5 | 200 OK [http://localhost/]
1039
+
1040
+
1041
+ Processing FredController#index (for 127.0.0.1 at 2010-01-21 21:23:20) [GET]
1042
+ Rendering fred/index
1043
+ Completed in 88ms (View: 86 | 200 OK [http://localhost/fred]
1044
+
1045
+
1046
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 22:11:09) [GET]
1047
+ Rendering dash/index
1048
+ Completed in 5ms (View: 4 | 200 OK [http://localhost/dash]
1049
+
1050
+
1051
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 22:12:57) [GET]
1052
+ Rendering dash/index
1053
+ Completed in 5ms (View: 4 | 200 OK [http://localhost/dash]
1054
+
1055
+
1056
+ Processing FredController#slow (for 127.0.0.1 at 2010-01-21 22:14:25) [GET]
1057
+ Rendering fred/slow
1058
+ Completed in 1069ms (View: 68 | 200 OK [http://localhost/fred/slow]
1059
+
1060
+
1061
+ Processing DashController#index (for 127.0.0.1 at 2010-01-21 22:14:41) [GET]
1062
+ Rendering dash/index
1063
+ Completed in 5ms (View: 1 | 200 OK [http://localhost/dash]
1064
+
1065
+
1066
+ Processing FredController#error (for 127.0.0.1 at 2010-01-21 22:14:43) [GET]
1067
+
1068
+ RuntimeError (Oh snap!):
1069
+ app/controllers/fred_controller.rb:8:in `error'
1070
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1071
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1072
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1073
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1074
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1075
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1076
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1077
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1078
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1079
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1080
+
1081
+ Rendered rescues/_trace (25.6ms)
1082
+ Rendered rescues/_request_and_response (1.2ms)
1083
+ Rendering rescues/layout (internal_server_error)