doctor_rails 0.0.1b

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 (69) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +68 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/doctor_rails/application.js +15 -0
  5. data/app/assets/stylesheets/doctor_rails/application.css +13 -0
  6. data/app/controllers/doctor_rails/application_controller.rb +4 -0
  7. data/app/controllers/doctor_rails/checks_controller.rb +57 -0
  8. data/app/helpers/doctor_rails/application_helper.rb +4 -0
  9. data/app/views/doctor_rails/checks/index.html.erb +1 -0
  10. data/app/views/layouts/doctor_rails/application.html.erb +14 -0
  11. data/config/routes.rb +3 -0
  12. data/lib/doctor_rails.rb +4 -0
  13. data/lib/doctor_rails/engine.rb +5 -0
  14. data/lib/doctor_rails/version.rb +3 -0
  15. data/lib/tasks/doctor_rails_tasks.rake +4 -0
  16. data/test/doctor_rails_test.rb +7 -0
  17. data/test/dummy/README.rdoc +261 -0
  18. data/test/dummy/Rakefile +7 -0
  19. data/test/dummy/app/assets/javascripts/application.js +15 -0
  20. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  21. data/test/dummy/app/controllers/application_controller.rb +3 -0
  22. data/test/dummy/app/controllers/failing_checks_controller.rb +10 -0
  23. data/test/dummy/app/controllers/working_checks_controller.rb +10 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +59 -0
  28. data/test/dummy/config/boot.rb +10 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +37 -0
  32. data/test/dummy/config/environments/production.rb +67 -0
  33. data/test/dummy/config/environments/test.rb +37 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/inflections.rb +15 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +7 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +1418 -0
  45. data/test/dummy/log/test.log +337 -0
  46. data/test/dummy/public/404.html +26 -0
  47. data/test/dummy/public/422.html +26 -0
  48. data/test/dummy/public/500.html +25 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/dummy/script/rails +6 -0
  51. data/test/dummy/tmp/cache/assets/C45/D10/sprockets%2F20718d42b4212794d80084d52cc2e347 +0 -0
  52. data/test/dummy/tmp/cache/assets/CAE/870/sprockets%2F8b26db18d4722b1f4843d95863a11c18 +0 -0
  53. data/test/dummy/tmp/cache/assets/CDB/2C0/sprockets%2F90835a7bfed73c70ec72534a105b8290 +0 -0
  54. data/test/dummy/tmp/cache/assets/CEC/990/sprockets%2F1dfb5ca7a5d0e08002d81444b25e0102 +0 -0
  55. data/test/dummy/tmp/cache/assets/D03/780/sprockets%2F23f001d63ae9ccb33164d555a49d5a56 +0 -0
  56. data/test/dummy/tmp/cache/assets/D1F/CE0/sprockets%2F883befb9b432d22557a0438992a5f9fe +0 -0
  57. data/test/dummy/tmp/cache/assets/D35/770/sprockets%2Fc0eea31038e369d505d9d1c5451b8d4a +0 -0
  58. data/test/dummy/tmp/cache/assets/D3D/830/sprockets%2Ffa2fec3f8f2a5366373fb654c60461c1 +0 -0
  59. data/test/dummy/tmp/cache/assets/D42/6C0/sprockets%2F37b2b047eff30f5ff959056e3e1c2f05 +0 -0
  60. data/test/dummy/tmp/cache/assets/D51/AC0/sprockets%2Fab348dd037c64d5ccd988866843e1e4f +0 -0
  61. data/test/dummy/tmp/cache/assets/D69/3E0/sprockets%2Ff8a92ab69ed473be22774f43a3cc104a +0 -0
  62. data/test/dummy/tmp/cache/assets/D6F/4E0/sprockets%2F9ea4dd1ebaa6a3f94b0795f33548226c +0 -0
  63. data/test/dummy/tmp/cache/assets/DB1/550/sprockets%2F3bb4be9939eb638d8c934ddc4f0e45e6 +0 -0
  64. data/test/dummy/tmp/cache/assets/DF0/DE0/sprockets%2Ffcafd3b1871a46eae4ddac51b824236c +0 -0
  65. data/test/dummy/tmp/pids/server.pid +1 -0
  66. data/test/functional/failing_checks_controller_test.rb +19 -0
  67. data/test/functional/working_checks_controller_test.rb +19 -0
  68. data/test/test_helper.rb +15 -0
  69. metadata +199 -0
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,10 @@
1
+ class FailingChecksController < DoctorRails::ChecksController
2
+ protected
3
+ def check_always_fail
4
+ false
5
+ end
6
+
7
+ def check_always_fail_description
8
+ "Sorry, but i always fail :("
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class WorkingChecksController < DoctorRails::ChecksController
2
+ protected
3
+ def check_always_work
4
+ true
5
+ end
6
+
7
+ def check_always_work_description
8
+ "Always work :)"
9
+ end
10
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,59 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "doctor_rails"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable escaping HTML in JSON.
39
+ config.active_support.escape_html_entities_in_json = true
40
+
41
+ # Use SQL instead of Active Record's schema dumper when creating the database.
42
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
43
+ # like if you have constraints or database-specific column types
44
+ # config.active_record.schema_format = :sql
45
+
46
+ # Enforce whitelist mode for mass assignment.
47
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
48
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
+ # parameters by using an attr_accessible or attr_protected declaration.
50
+ config.active_record.whitelist_attributes = true
51
+
52
+ # Enable the asset pipeline
53
+ config.assets.enabled = true
54
+
55
+ # Version of your assets, change this if you want to expire all your assets
56
+ config.assets.version = '1.0'
57
+ end
58
+ end
59
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: ":memory:"
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
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.consider_all_requests_local = 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
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
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.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -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 to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
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
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # 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,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies 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
+ Dummy::Application.config.secret_token = '4ad38fb9a27c7cabace29997dad73a224f5e5d9223c7f4f25870c4f696f07ff25c855e2c83552e14ac3c78b64edf8c6308016c7097704c314a9b89e3c9693650'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,7 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount DoctorRails::Engine => "/doctor_rails"
4
+
5
+ match 'failing_checks', :to => 'failing_checks#index'
6
+ match 'working_checks', :to => 'working_checks#index'
7
+ end
File without changes
File without changes
@@ -0,0 +1,1418 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2013-01-19 16:22:25 -0200
5
+ Connecting to database specified by database.yml
6
+
7
+ ActionController::RoutingError (No route matches [GET] "/"):
8
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
9
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
11
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
12
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
13
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
14
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
16
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
17
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
18
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
19
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
20
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
21
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
22
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
23
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
24
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
25
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
26
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
27
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
28
+
29
+
30
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
31
+
32
+
33
+ Started GET "/" for 127.0.0.1 at 2013-01-19 16:22:46 -0200
34
+
35
+ ActionController::RoutingError (No route matches [GET] "/"):
36
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
37
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
38
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
39
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
40
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
41
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
42
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
43
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
44
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
45
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
46
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
47
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
48
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
49
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
50
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
51
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
52
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
53
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
54
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
55
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
56
+
57
+
58
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
59
+
60
+
61
+ Started GET "/" for 127.0.0.1 at 2013-01-19 16:23:20 -0200
62
+
63
+ ActionController::RoutingError (No route matches [GET] "/"):
64
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
65
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
66
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
67
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
68
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
69
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
70
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
71
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
72
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
73
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
74
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
75
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
76
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
77
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
78
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
79
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
80
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
81
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
82
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
83
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
84
+
85
+
86
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
87
+
88
+
89
+ Started GET "/" for 127.0.0.1 at 2013-01-19 16:23:22 -0200
90
+
91
+ ActionController::RoutingError (No route matches [GET] "/"):
92
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
93
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
94
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
95
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
96
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
97
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
98
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
99
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
100
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
101
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
102
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
103
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
104
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
105
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
106
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
107
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
108
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
109
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
110
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
111
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
112
+
113
+
114
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
115
+
116
+
117
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:23:27 -0200
118
+ Processing by DoctorRails::ChecksController#index as HTML
119
+ Completed 500 Internal Server Error in 5ms
120
+
121
+ ActionView::MissingTemplate (Missing template doctor_rails/checks/index, doctor_rails/application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
122
+ * "/Users/fernando/Sites/doctor_rails/test/dummy/app/views"
123
+ * "/Users/fernando/Sites/doctor_rails/app/views"
124
+ ):
125
+ actionpack (3.2.11) lib/action_view/path_set.rb:58:in `find'
126
+ actionpack (3.2.11) lib/action_view/lookup_context.rb:109:in `find'
127
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
128
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
129
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:10:in `render'
130
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
131
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
132
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
133
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
134
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
135
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
136
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
137
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
138
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
139
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
140
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
141
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
142
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
143
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
144
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
145
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
146
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
147
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
148
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
149
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
150
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
151
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
152
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__2213359067727462282__process_action__886408223938261576__callbacks'
153
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
154
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
155
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
156
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
157
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
158
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
159
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
160
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
161
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
162
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
163
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
164
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
165
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
166
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
167
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
168
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
169
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
170
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
171
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
172
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
173
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
174
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
175
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
176
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
177
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
178
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
179
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
180
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
181
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
182
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
183
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
184
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
185
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
186
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
187
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
188
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
189
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
190
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
191
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
192
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
193
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
194
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
195
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__118905462016742741__call__2537006419033142419__callbacks'
196
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
197
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
198
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
199
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
200
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
201
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
202
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
203
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
204
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
205
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
206
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
207
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
208
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
209
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
210
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
211
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
212
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
213
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
214
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
215
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
216
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
217
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
218
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
219
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
220
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
221
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
222
+
223
+
224
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
225
+
226
+
227
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
228
+ Processing by DoctorRails::ChecksController#index as HTML
229
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.3ms)
230
+ Compiled doctor_rails/checks.css (0ms) (pid 12783)
231
+ Compiled doctor_rails/application.css (8ms) (pid 12783)
232
+ Compiled jquery.js (2ms) (pid 12783)
233
+ Compiled jquery_ujs.js (0ms) (pid 12783)
234
+ Compiled doctor_rails/checks.js (0ms) (pid 12783)
235
+ Compiled doctor_rails/application.js (89ms) (pid 12783)
236
+ Completed 200 OK in 168ms (Views: 167.5ms | ActiveRecord: 0.0ms)
237
+
238
+
239
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
240
+ Served asset /doctor_rails/application.css - 200 OK (7ms)
241
+
242
+
243
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
244
+ Served asset /jquery_ujs.js - 200 OK (2ms)
245
+
246
+
247
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
248
+ Served asset /doctor_rails/checks.css - 200 OK (3ms)
249
+
250
+
251
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
252
+ Served asset /doctor_rails/application.js - 200 OK (9ms)
253
+
254
+
255
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
256
+ Served asset /doctor_rails/checks.js - 200 OK (3ms)
257
+
258
+
259
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:23:49 -0200
260
+ Served asset /jquery.js - 200 OK (4ms)
261
+
262
+
263
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:24:10 -0200
264
+ Processing by DoctorRails::ChecksController#index as HTML
265
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (5.0ms)
266
+ Completed 500 Internal Server Error in 7ms
267
+
268
+ ActionView::Template::Error (undefined local variable or method `results' for #<#<Class:0x007f8463667288>:0x007f8463334a20>):
269
+ 1: <%=debug results%>
270
+ /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb:1:in `___sers_fernando__ites_doctor_rails_app_views_doctor_rails_checks_index_html_erb___1790891305228317514_70103274423980'
271
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
272
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
273
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
274
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
275
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
276
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
277
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
278
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
279
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
280
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
281
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
282
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
283
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
284
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
285
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
286
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
287
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
288
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
289
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
290
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
291
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
292
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
293
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
294
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
295
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
296
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
297
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
298
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
299
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
300
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
301
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
302
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
303
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
304
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
305
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
306
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__2213359067727462282__process_action__886408223938261576__callbacks'
307
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
308
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
309
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
310
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
311
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
312
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
313
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
314
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
315
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
316
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
317
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
318
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
319
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
320
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
321
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
322
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
323
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
324
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
325
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
326
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
327
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
328
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
329
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
330
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
331
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
332
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
333
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
334
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
335
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
336
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
337
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
338
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
339
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
340
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
341
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
342
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
343
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
344
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
345
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
346
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
347
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
348
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
349
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__118905462016742741__call__2537006419033142419__callbacks'
350
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
351
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
352
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
353
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
354
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
355
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
356
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
357
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
358
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
359
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
360
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
361
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
362
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
363
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
364
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
365
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
366
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
367
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
368
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
369
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
370
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
371
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
372
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
373
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
374
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
375
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
376
+
377
+
378
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
379
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
380
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
381
+
382
+
383
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
384
+ Processing by DoctorRails::ChecksController#index as HTML
385
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (10.8ms)
386
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
387
+
388
+
389
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
390
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
391
+
392
+
393
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
394
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
395
+
396
+
397
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
398
+ Served asset /jquery.js - 304 Not Modified (0ms)
399
+
400
+
401
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
402
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
403
+
404
+
405
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
406
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
407
+
408
+
409
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
410
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
411
+
412
+
413
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
414
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
415
+
416
+
417
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
418
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
419
+
420
+
421
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:24:24 -0200
422
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
423
+
424
+
425
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:25:13 -0200
426
+ Connecting to database specified by database.yml
427
+ Processing by DoctorRails::ChecksController#index as HTML
428
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (3.3ms)
429
+ Completed 200 OK in 45ms (Views: 45.0ms | ActiveRecord: 0.0ms)
430
+
431
+
432
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:25:14 -0200
433
+ Served asset /doctor_rails/application.css - 304 Not Modified (9ms)
434
+
435
+
436
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:25:14 -0200
437
+ Served asset /doctor_rails/checks.css - 304 Not Modified (2ms)
438
+
439
+
440
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:14 -0200
441
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
442
+
443
+
444
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:14 -0200
445
+ Served asset /jquery.js - 304 Not Modified (2ms)
446
+
447
+
448
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:14 -0200
449
+ Served asset /doctor_rails/checks.js - 304 Not Modified (2ms)
450
+
451
+
452
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:14 -0200
453
+ Served asset /doctor_rails/application.js - 304 Not Modified (4ms)
454
+
455
+
456
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
457
+ Processing by DoctorRails::ChecksController#index as HTML
458
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.2ms)
459
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
460
+
461
+
462
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
463
+ Served asset /jquery.js - 304 Not Modified (0ms)
464
+
465
+
466
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
467
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
468
+
469
+
470
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
471
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
472
+
473
+
474
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
475
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
476
+
477
+
478
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
479
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
480
+
481
+
482
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:25:43 -0200
483
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
484
+
485
+
486
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
487
+ Processing by DoctorRails::ChecksController#index as HTML
488
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.2ms)
489
+ Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.0ms)
490
+
491
+
492
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
493
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
494
+
495
+
496
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
497
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
498
+
499
+
500
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
501
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
502
+
503
+
504
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
505
+ Served asset /jquery.js - 304 Not Modified (0ms)
506
+
507
+
508
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
509
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
510
+
511
+
512
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:09 -0200
513
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
514
+
515
+
516
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
517
+ Processing by DoctorRails::ChecksController#index as HTML
518
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.3ms)
519
+ Completed 200 OK in 17ms (Views: 4.4ms | ActiveRecord: 2.5ms)
520
+
521
+
522
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
523
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
524
+
525
+
526
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
527
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
528
+
529
+
530
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
531
+ Served asset /jquery.js - 304 Not Modified (0ms)
532
+
533
+
534
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
535
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
536
+
537
+
538
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
539
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
540
+
541
+
542
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:21 -0200
543
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
544
+
545
+
546
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
547
+ Processing by DoctorRails::ChecksController#index as HTML
548
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.3ms)
549
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.4ms)
550
+
551
+
552
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
553
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
554
+
555
+
556
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
557
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
558
+
559
+
560
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
561
+ Served asset /jquery.js - 304 Not Modified (0ms)
562
+
563
+
564
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
565
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
566
+
567
+
568
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
569
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
570
+
571
+
572
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
573
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
574
+
575
+
576
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
577
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
578
+
579
+
580
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:26:49 -0200
581
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
582
+
583
+
584
+ Started GET "/doctor_rails.json" for 127.0.0.1 at 2013-01-19 16:26:51 -0200
585
+
586
+ ActionController::RoutingError (No route matches [GET] "/doctor_rails.json"):
587
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
588
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
589
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
590
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
591
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
592
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
593
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
594
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
595
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
596
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
597
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
598
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
599
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
600
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
601
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
602
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
603
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
604
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
605
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
606
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
607
+
608
+
609
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
610
+
611
+
612
+ Started GET "/doctor_rails/index.json" for 127.0.0.1 at 2013-01-19 16:26:54 -0200
613
+
614
+ ActionController::RoutingError (No route matches [GET] "/doctor_rails/index.json"):
615
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
616
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
617
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
618
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
619
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
620
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
621
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
622
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
623
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
624
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
625
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
626
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
627
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
628
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
629
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
630
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
631
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
632
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
633
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
634
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
635
+
636
+
637
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
638
+
639
+
640
+ Started GET "/doctor_rails/checks.json" for 127.0.0.1 at 2013-01-19 16:26:58 -0200
641
+
642
+ ActionController::RoutingError (No route matches [GET] "/doctor_rails/checks.json"):
643
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
644
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
645
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
646
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
647
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
648
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
649
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
650
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
651
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
652
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
653
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
654
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
655
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
656
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
657
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
658
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
659
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
660
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
661
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
662
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
663
+
664
+
665
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
666
+
667
+
668
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
669
+ Processing by DoctorRails::ChecksController#index as HTML
670
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.3ms)
671
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms)
672
+
673
+
674
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
675
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
676
+
677
+
678
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
679
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
680
+
681
+
682
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
683
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
684
+
685
+
686
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
687
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
688
+
689
+
690
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
691
+ Served asset /jquery.js - 304 Not Modified (0ms)
692
+
693
+
694
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:29:50 -0200
695
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
696
+
697
+
698
+ Started GET "/doctor_rails.json" for 127.0.0.1 at 2013-01-19 16:29:52 -0200
699
+
700
+ ActionController::RoutingError (No route matches [GET] "/doctor_rails.json"):
701
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
702
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
703
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
704
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
705
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
706
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
707
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
708
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
709
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
710
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
711
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
712
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
713
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
714
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
715
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
716
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
717
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
718
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
719
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
720
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
721
+
722
+
723
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
724
+
725
+
726
+ Started GET "/doctor_rails.json" for 127.0.0.1 at 2013-01-19 16:30:25 -0200
727
+
728
+ ActionController::RoutingError (No route matches [GET] "/doctor_rails.json"):
729
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
730
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
731
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
732
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
733
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
734
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
735
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
736
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
737
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
738
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
739
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
740
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
741
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
742
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
743
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
744
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
745
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
746
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
747
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
748
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
749
+
750
+
751
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
752
+
753
+
754
+ Started GET "/doctor_rails/checks.json" for 127.0.0.1 at 2013-01-19 16:30:28 -0200
755
+ Processing by DoctorRails::ChecksController#index as JSON
756
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
757
+
758
+
759
+ Started GET "/doctor_rails/checks.json" for 127.0.0.1 at 2013-01-19 16:32:08 -0200
760
+ Processing by DoctorRails::ChecksController#index as JSON
761
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
762
+
763
+
764
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:57:46 -0200
765
+ Processing by DoctorRails::ChecksController#index as HTML
766
+ Completed 500 Internal Server Error in 2ms
767
+
768
+ NoMethodError (undefined method `method_defined?' for #<DoctorRails::ChecksController:0x007feadc28fe78>):
769
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:38:in `block in do_check'
770
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:35:in `each'
771
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:35:in `do_check'
772
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:8:in `index'
773
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
774
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
775
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
776
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
777
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__1786583621738578327__process_action__2878458101544733710__callbacks'
778
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
779
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
780
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
781
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
782
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
783
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
784
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
785
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
786
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
787
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
788
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
789
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
790
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
791
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
792
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
793
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
794
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
795
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
796
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
797
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
798
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
799
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
800
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
801
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
802
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
803
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
804
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
805
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
806
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
807
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
808
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
809
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
810
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
811
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
812
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
813
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
814
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
815
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
816
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
817
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
818
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
819
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
820
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2776265945673365613__call__2957303232379752615__callbacks'
821
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
822
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
823
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
824
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
825
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
826
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
827
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
828
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
829
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
830
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
831
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
832
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
833
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
834
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
835
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
836
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
837
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
838
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
839
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
840
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
841
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
842
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
843
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
844
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
845
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
846
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
847
+
848
+
849
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
850
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
851
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
852
+
853
+
854
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
855
+ Processing by DoctorRails::ChecksController#index as HTML
856
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.5ms)
857
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)
858
+
859
+
860
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
861
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
862
+
863
+
864
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
865
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
866
+
867
+
868
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
869
+ Served asset /jquery.js - 304 Not Modified (0ms)
870
+
871
+
872
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
873
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
874
+
875
+
876
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
877
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
878
+
879
+
880
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:57:56 -0200
881
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
882
+
883
+
884
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
885
+ Processing by DoctorRails::ChecksController#index as HTML
886
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.8ms)
887
+ Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.4ms)
888
+
889
+
890
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
891
+ Served asset /jquery.js - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
895
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
896
+
897
+
898
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
899
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
900
+
901
+
902
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
903
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
904
+
905
+
906
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
907
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
908
+
909
+
910
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:05 -0200
911
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
912
+
913
+
914
+ Started GET "/doctor_rails" for 127.0.0.1 at 2013-01-19 16:58:20 -0200
915
+ Processing by DoctorRails::ChecksController#index as HTML
916
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.4ms)
917
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.4ms)
918
+
919
+
920
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:58:20 -0200
921
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
922
+
923
+
924
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:20 -0200
925
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
926
+
927
+
928
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:20 -0200
929
+ Served asset /jquery.js - 304 Not Modified (0ms)
930
+
931
+
932
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:58:20 -0200
933
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
934
+
935
+
936
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:20 -0200
937
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
938
+
939
+
940
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:21 -0200
941
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
942
+
943
+
944
+ Started GET "/doctor_rails?boolean_result" for 127.0.0.1 at 2013-01-19 16:58:30 -0200
945
+ Processing by DoctorRails::ChecksController#index as HTML
946
+ Parameters: {"boolean_result"=>nil}
947
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.5ms)
948
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
949
+
950
+
951
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:58:30 -0200
952
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
953
+
954
+
955
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:58:30 -0200
956
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
957
+
958
+
959
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:30 -0200
960
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
961
+
962
+
963
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:30 -0200
964
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
965
+
966
+
967
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:31 -0200
968
+ Served asset /jquery.js - 304 Not Modified (0ms)
969
+
970
+
971
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:58:31 -0200
972
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
973
+
974
+
975
+ Started GET "/doctor_rails?boolean_result=true" for 127.0.0.1 at 2013-01-19 16:58:38 -0200
976
+ Processing by DoctorRails::ChecksController#index as HTML
977
+ Parameters: {"boolean_result"=>"true"}
978
+ Completed 500 Internal Server Error in 1ms
979
+
980
+ TypeError (can't convert Symbol into Integer):
981
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:18:in `[]'
982
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:18:in `block in boolean_result'
983
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:17:in `each'
984
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:17:in `boolean_result'
985
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:10:in `index'
986
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
987
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
988
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
989
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
990
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__1786583621738578327__process_action__2878458101544733710__callbacks'
991
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
992
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
993
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
994
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
995
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
996
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
997
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
998
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
999
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
1000
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1001
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1002
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1003
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
1004
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
1005
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
1006
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1007
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
1008
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
1009
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1010
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
1011
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1012
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1013
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1014
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
1015
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
1016
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
1017
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1018
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1019
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1020
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
1021
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1022
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
1023
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
1024
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
1025
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1026
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
1027
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
1028
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
1029
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1030
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
1031
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1032
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1033
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2776265945673365613__call__2957303232379752615__callbacks'
1034
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1035
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1036
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1037
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1038
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1039
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1040
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1041
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1042
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
1043
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
1044
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
1045
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
1046
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1047
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
1048
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
1049
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1050
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
1051
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
1052
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
1053
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
1054
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
1055
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
1056
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
1057
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1058
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1059
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1060
+
1061
+
1062
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1063
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1064
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.0ms)
1065
+
1066
+
1067
+ Started GET "/doctor_rails?boolean_result=true" for 127.0.0.1 at 2013-01-19 16:59:07 -0200
1068
+ Processing by DoctorRails::ChecksController#index as HTML
1069
+ Parameters: {"boolean_result"=>"true"}
1070
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.2ms)
1071
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.3ms)
1072
+
1073
+
1074
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:59:08 -0200
1075
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
1076
+
1077
+
1078
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:08 -0200
1079
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
1080
+
1081
+
1082
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:08 -0200
1083
+ Served asset /jquery.js - 304 Not Modified (0ms)
1084
+
1085
+
1086
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:59:08 -0200
1087
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
1088
+
1089
+
1090
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:08 -0200
1091
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1092
+
1093
+
1094
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:08 -0200
1095
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
1096
+
1097
+
1098
+ Started GET "/doctor_rails?boolean_result=true" for 127.0.0.1 at 2013-01-19 16:59:19 -0200
1099
+ Processing by DoctorRails::ChecksController#index as HTML
1100
+ Parameters: {"boolean_result"=>"true"}
1101
+ Completed 500 Internal Server Error in 1ms
1102
+
1103
+ TypeError (can't convert Symbol into Integer):
1104
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:18:in `[]'
1105
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:18:in `block in boolean_result'
1106
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:17:in `each'
1107
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:17:in `boolean_result'
1108
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:10:in `index'
1109
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1110
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
1111
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
1112
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1113
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__1786583621738578327__process_action__2878458101544733710__callbacks'
1114
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1115
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1116
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1117
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
1118
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
1119
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1120
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
1121
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1122
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
1123
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1124
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1125
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1126
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
1127
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
1128
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
1129
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1130
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
1131
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
1132
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1133
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
1134
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1135
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1136
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1137
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
1138
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
1139
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
1140
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1141
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1142
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1143
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
1144
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1145
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
1146
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
1147
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
1148
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1149
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
1150
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
1151
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
1152
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1153
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
1154
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1155
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1156
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2776265945673365613__call__2957303232379752615__callbacks'
1157
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1158
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1159
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1160
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1161
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1162
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1163
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1164
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1165
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
1166
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
1167
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
1168
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
1169
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1170
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
1171
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
1172
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1173
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
1174
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
1175
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
1176
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
1177
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
1178
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
1179
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
1180
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1181
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1182
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1183
+
1184
+
1185
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1186
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1187
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms)
1188
+
1189
+
1190
+ Started GET "/doctor_rails?boolean_result=true" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1191
+ Processing by DoctorRails::ChecksController#index as HTML
1192
+ Parameters: {"boolean_result"=>"true"}
1193
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.2ms)
1194
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.3ms)
1195
+
1196
+
1197
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1198
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
1199
+
1200
+
1201
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1202
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
1203
+
1204
+
1205
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1206
+ Served asset /jquery.js - 304 Not Modified (0ms)
1207
+
1208
+
1209
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1210
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1211
+
1212
+
1213
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1214
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
1215
+
1216
+
1217
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 16:59:37 -0200
1218
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
1219
+
1220
+
1221
+ Started GET "/doctor_rails?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:00:50 -0200
1222
+ Processing by DoctorRails::ChecksController#index as HTML
1223
+ Parameters: {"boolean_result"=>"true"}
1224
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.2ms)
1225
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)
1226
+
1227
+
1228
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 17:00:51 -0200
1229
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
1230
+
1231
+
1232
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 17:00:51 -0200
1233
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1234
+
1235
+
1236
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 17:00:51 -0200
1237
+ Served asset /jquery.js - 304 Not Modified (0ms)
1238
+
1239
+
1240
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 17:00:51 -0200
1241
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
1242
+
1243
+
1244
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 17:00:51 -0200
1245
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
1246
+
1247
+
1248
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 17:00:51 -0200
1249
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
1250
+
1251
+
1252
+ Started GET "/doctor_rails?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1253
+ Processing by DoctorRails::ChecksController#index as HTML
1254
+ Parameters: {"boolean_result"=>"true"}
1255
+ Rendered /Users/fernando/Sites/doctor_rails/app/views/doctor_rails/checks/index.html.erb within layouts/doctor_rails/application (0.2ms)
1256
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
1257
+
1258
+
1259
+ Started GET "/assets/doctor_rails/application.css?body=1" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1260
+ Served asset /doctor_rails/application.css - 304 Not Modified (0ms)
1261
+
1262
+
1263
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1264
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1265
+
1266
+
1267
+ Started GET "/assets/doctor_rails/checks.css?body=1" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1268
+ Served asset /doctor_rails/checks.css - 304 Not Modified (0ms)
1269
+
1270
+
1271
+ Started GET "/assets/doctor_rails/checks.js?body=1" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1272
+ Served asset /doctor_rails/checks.js - 304 Not Modified (0ms)
1273
+
1274
+
1275
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1276
+ Served asset /jquery.js - 304 Not Modified (0ms)
1277
+
1278
+
1279
+ Started GET "/assets/doctor_rails/application.js?body=1" for 127.0.0.1 at 2013-01-19 17:01:10 -0200
1280
+ Served asset /doctor_rails/application.js - 304 Not Modified (0ms)
1281
+
1282
+
1283
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:01:20 -0200
1284
+ Processing by DoctorRails::ChecksController#index as JSON
1285
+ Parameters: {"boolean_result"=>"true"}
1286
+ Completed 200 OK in 27ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1287
+
1288
+
1289
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:01:28 -0200
1290
+ Processing by DoctorRails::ChecksController#index as JSON
1291
+ Parameters: {"boolean_result"=>"true"}
1292
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1293
+
1294
+
1295
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:02:46 -0200
1296
+ Processing by DoctorRails::ChecksController#index as JSON
1297
+ Parameters: {"boolean_result"=>"true"}
1298
+ Completed 500 Internal Server Error in 2ms
1299
+
1300
+ NameError (undefined local variable or method `latest_migration' for #<DoctorRails::ChecksController:0x007feadc652268>):
1301
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:58:in `check_migrations'
1302
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:45:in `block in do_check'
1303
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:35:in `each'
1304
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:35:in `do_check'
1305
+ /Users/fernando/Sites/doctor_rails/app/controllers/doctor_rails/checks_controller.rb:8:in `index'
1306
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1307
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
1308
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
1309
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1310
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__1786583621738578327__process_action__2878458101544733710__callbacks'
1311
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1312
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1313
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1314
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
1315
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
1316
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1317
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
1318
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1319
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
1320
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1321
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1322
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1323
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
1324
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
1325
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
1326
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1327
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
1328
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
1329
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1330
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
1331
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1332
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1333
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1334
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
1335
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
1336
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
1337
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1338
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1339
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1340
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
1341
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1342
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
1343
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
1344
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
1345
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1346
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
1347
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
1348
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
1349
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1350
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
1351
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1352
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1353
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2776265945673365613__call__2957303232379752615__callbacks'
1354
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1355
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1356
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1357
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1358
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1359
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1360
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1361
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1362
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
1363
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
1364
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
1365
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
1366
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1367
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
1368
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
1369
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1370
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
1371
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
1372
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
1373
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
1374
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
1375
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
1376
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
1377
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1378
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1379
+ /Users/fernando/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1380
+
1381
+
1382
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1383
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1384
+ Rendered /Users/fernando/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
1385
+
1386
+
1387
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:02:55 -0200
1388
+ Processing by DoctorRails::ChecksController#index as JSON
1389
+ Parameters: {"boolean_result"=>"true"}
1390
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1391
+
1392
+
1393
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:03:17 -0200
1394
+ Processing by DoctorRails::ChecksController#index as JSON
1395
+ Parameters: {"boolean_result"=>"true"}
1396
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1397
+
1398
+
1399
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:03:28 -0200
1400
+ Processing by DoctorRails::ChecksController#index as JSON
1401
+ Parameters: {"boolean_result"=>"true"}
1402
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1403
+
1404
+
1405
+ Started GET "/doctor_rails/checks.json?boolean_result=true" for 127.0.0.1 at 2013-01-19 17:03:35 -0200
1406
+ Processing by DoctorRails::ChecksController#index as JSON
1407
+ Parameters: {"boolean_result"=>"true"}
1408
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1409
+
1410
+
1411
+ Started GET "/doctor_rails/checks.json" for 127.0.0.1 at 2013-01-19 17:03:37 -0200
1412
+ Processing by DoctorRails::ChecksController#index as JSON
1413
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1414
+
1415
+
1416
+ Started GET "/doctor_rails/checks.xml" for 127.0.0.1 at 2013-01-19 17:03:59 -0200
1417
+ Processing by DoctorRails::ChecksController#index as XML
1418
+ Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 0.0ms)