woops 0.0.1.alpha

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 (75) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/oops/application.js +15 -0
  6. data/app/assets/javascripts/oops/failure.js +5 -0
  7. data/app/assets/stylesheets/oops/application.css +13 -0
  8. data/app/assets/stylesheets/oops/failure.css +29 -0
  9. data/app/controllers/oops/application_controller.rb +4 -0
  10. data/app/controllers/oops/failures_controller.rb +9 -0
  11. data/app/helpers/oops/application_helper.rb +4 -0
  12. data/app/helpers/oops/failure_helper.rb +4 -0
  13. data/app/models/oops/failure.rb +5 -0
  14. data/app/views/layouts/oops/application.html.erb +14 -0
  15. data/app/views/oops/failures/index.html.erb +7 -0
  16. data/config/initializers/exception_handler.rb +6 -0
  17. data/config/routes.rb +3 -0
  18. data/db/migrate/20150814174650_create_oops_failures.rb +10 -0
  19. data/lib/oops.rb +4 -0
  20. data/lib/oops/engine.rb +5 -0
  21. data/lib/oops/version.rb +3 -0
  22. data/lib/tasks/oops_tasks.rake +4 -0
  23. data/test/controllers/oops/failure_controller_test.rb +11 -0
  24. data/test/dummy/README.rdoc +261 -0
  25. data/test/dummy/Rakefile +7 -0
  26. data/test/dummy/app/assets/javascripts/application.js +15 -0
  27. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  28. data/test/dummy/app/controllers/application_controller.rb +3 -0
  29. data/test/dummy/app/controllers/simulate_controller.rb +5 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/config.ru +4 -0
  33. data/test/dummy/config/application.rb +59 -0
  34. data/test/dummy/config/boot.rb +10 -0
  35. data/test/dummy/config/database.yml +25 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +37 -0
  38. data/test/dummy/config/environments/production.rb +67 -0
  39. data/test/dummy/config/environments/test.rb +37 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/inflections.rb +15 -0
  42. data/test/dummy/config/initializers/mime_types.rb +5 -0
  43. data/test/dummy/config/initializers/secret_token.rb +7 -0
  44. data/test/dummy/config/initializers/session_store.rb +8 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +5 -0
  47. data/test/dummy/config/routes.rb +4 -0
  48. data/test/dummy/db/development.sqlite3 +0 -0
  49. data/test/dummy/db/schema.rb +23 -0
  50. data/test/dummy/log/development.log +1113 -0
  51. data/test/dummy/public/404.html +26 -0
  52. data/test/dummy/public/422.html +26 -0
  53. data/test/dummy/public/500.html +25 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/script/rails +6 -0
  56. data/test/dummy/tmp/cache/assets/C8D/B30/sprockets%2F5f1ae429b8722e01f89b76057426297e +0 -0
  57. data/test/dummy/tmp/cache/assets/CC9/160/sprockets%2F5ff6276c91df6068be97d1f551283549 +0 -0
  58. data/test/dummy/tmp/cache/assets/CE7/530/sprockets%2F7662585d3faf2a21e6bb813d8834773c +0 -0
  59. data/test/dummy/tmp/cache/assets/CE7/930/sprockets%2F21f81f45951ff8cd88ad0502b457763b +0 -0
  60. data/test/dummy/tmp/cache/assets/D03/880/sprockets%2Fd26991da41794ac11f61bee0e94500c1 +0 -0
  61. data/test/dummy/tmp/cache/assets/D4A/080/sprockets%2F52c20fc80f4cef70688f544976dcb81a +0 -0
  62. data/test/dummy/tmp/cache/assets/D55/100/sprockets%2F73e73f6ab54e8ecc38de6752e4c59347 +0 -0
  63. data/test/dummy/tmp/cache/assets/D62/EC0/sprockets%2F16ffcc05f857e89428f07a89d5fd288f +0 -0
  64. data/test/dummy/tmp/cache/assets/D89/660/sprockets%2F955a8da8b6efdfcf203ed6919f565458 +0 -0
  65. data/test/dummy/tmp/cache/assets/D95/0C0/sprockets%2F5d456c9244824b8bc20bbdeb0aded159 +0 -0
  66. data/test/dummy/tmp/cache/assets/D96/8F0/sprockets%2Fdca1af6249c7c42decf896c3e0a29110 +0 -0
  67. data/test/dummy/tmp/cache/assets/DA5/610/sprockets%2Fe5206f46b92d97abffadd45fc07275b5 +0 -0
  68. data/test/dummy/tmp/cache/assets/DC6/F00/sprockets%2F9f2714acae946fef0aeaeba92f012435 +0 -0
  69. data/test/dummy/tmp/cache/assets/E01/2E0/sprockets%2Fd5d083bdbb7c22514a92ed9c797ebdbf +0 -0
  70. data/test/fixtures/oops/failures.yml +9 -0
  71. data/test/integration/navigation_test.rb +10 -0
  72. data/test/oops_test.rb +7 -0
  73. data/test/test_helper.rb +15 -0
  74. data/test/unit/oops/failure_test.rb +9 -0
  75. metadata +196 -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,5 @@
1
+ class SimulateController < ApplicationController
2
+ def failure
3
+ raise "Simulating an exception"
4
+ end
5
+ 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(*Rails.groups)
6
+ require "oops"
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: db/test.sqlite3
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 = '1d6f1963c85f16d52a7062ef39335d85cbff6172c6b994e411a4301174a4b59f3d55e3168412a62187ea3b8984ac7414e29524e4150e2e7fa99fd573dff5368b'
@@ -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,4 @@
1
+ Rails.application.routes.draw do
2
+ mount Oops::Engine => "/oops"
3
+ get "simulate/failure"
4
+ end
@@ -0,0 +1,23 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20150814174650) do
15
+
16
+ create_table "oops_failures", :force => true do |t|
17
+ t.string "name"
18
+ t.text "message"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
22
+
23
+ end
@@ -0,0 +1,1113 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2015-08-14 14:26:43 -0300
4
+ Connecting to database specified by database.yml
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/"):
7
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
10
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
11
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
12
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
13
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
15
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
16
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
17
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
18
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
19
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
20
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
21
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
22
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
23
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
24
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
25
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
26
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
27
+
28
+
29
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.0ms)
30
+
31
+
32
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:26:46 -0300
33
+
34
+ ActionController::RoutingError (uninitialized constant Oops::FailuresController):
35
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:230:in `block in constantize'
36
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `each'
37
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `constantize'
38
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
39
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:54:in `controller'
40
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:32:in `call'
41
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
42
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
43
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
44
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
45
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
46
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
47
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
48
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
49
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
50
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
51
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
52
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
53
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
54
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
55
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
56
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
57
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
58
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
59
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
60
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
61
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
62
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
63
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__649135376__call__492340476__callbacks'
64
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
65
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
66
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
67
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
68
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
69
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
70
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
71
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
72
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
73
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
74
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
75
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
76
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
77
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
78
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
79
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
80
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
81
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
82
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
83
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
84
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
85
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
86
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
87
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
88
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
89
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
90
+
91
+
92
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
93
+
94
+
95
+ Started GET "/" for 127.0.0.1 at 2015-08-14 14:27:02 -0300
96
+
97
+ ActionController::RoutingError (No route matches [GET] "/"):
98
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
99
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
100
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
101
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
102
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
103
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
104
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
105
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
106
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
107
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
108
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
109
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
110
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
111
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
112
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
113
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
114
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
115
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
116
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
117
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
118
+
119
+
120
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
121
+
122
+
123
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:27:52 -0300
124
+
125
+ ActionController::RoutingError (uninitialized constant Oops::FailuresController):
126
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:230:in `block in constantize'
127
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `each'
128
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `constantize'
129
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
130
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:54:in `controller'
131
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:32:in `call'
132
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
133
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
134
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
135
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
136
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
137
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
138
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
139
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
140
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
141
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
142
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
143
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
144
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
145
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
146
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
147
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
148
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
149
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
150
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
151
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
152
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
153
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
154
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__649135376__call__492340476__callbacks'
155
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
156
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
157
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
158
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
159
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
160
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
161
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
162
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
163
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
164
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
165
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
166
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
167
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
168
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
169
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
170
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
171
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
172
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
173
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
174
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
175
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
176
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
177
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
178
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
179
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
180
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
181
+
182
+
183
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
184
+
185
+
186
+ Started GET "/" for 127.0.0.1 at 2015-08-14 14:31:59 -0300
187
+ Connecting to database specified by database.yml
188
+
189
+ ActionController::RoutingError (No route matches [GET] "/"):
190
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
191
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
192
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
193
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
194
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
195
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
196
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
197
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
198
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
199
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
200
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
201
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
202
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
203
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
204
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
205
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
206
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
207
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
208
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
209
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
210
+
211
+
212
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.0ms)
213
+
214
+
215
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:32:14 -0300
216
+
217
+ ActionController::RoutingError (uninitialized constant Oops::FailuresController):
218
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:230:in `block in constantize'
219
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `each'
220
+ activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `constantize'
221
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
222
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:54:in `controller'
223
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:32:in `call'
224
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
225
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
226
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
227
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
228
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
229
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
230
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
231
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
232
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
233
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
234
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
235
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
236
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
237
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
238
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
239
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
240
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
241
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
242
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
243
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
244
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
245
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
246
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__606497367__call__313484376__callbacks'
247
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
248
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
249
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
250
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
251
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
252
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
253
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
254
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
255
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
256
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
257
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
258
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
259
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
260
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
261
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
262
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
263
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
264
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
265
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
266
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
267
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
268
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
269
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
270
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
271
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
272
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
273
+
274
+
275
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
276
+
277
+
278
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:33:14 -0300
279
+ Processing by Oops::FailuresController#index as HTML
280
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (1.0ms)
281
+ Compiled oops/failure.css (0ms) (pid 6200)
282
+ Compiled oops/application.css (383ms) (pid 6200)
283
+ Compiled jquery.js (7ms) (pid 6200)
284
+ Compiled jquery_ujs.js (2ms) (pid 6200)
285
+ Compiled oops/failure.js (6ms) (pid 6200)
286
+ Compiled oops/application.js (1652ms) (pid 6200)
287
+ Completed 200 OK in 3521.4ms (Views: 3520.3ms | ActiveRecord: 0.0ms)
288
+
289
+
290
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:33:18 -0300
291
+ Served asset /oops/application.css - 200 OK (44ms)
292
+
293
+
294
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:33:18 -0300
295
+ Served asset /oops/failure.css - 200 OK (11ms)
296
+
297
+
298
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:33:18 -0300
299
+ Served asset /jquery.js - 304 Not Modified (12ms)
300
+
301
+
302
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:33:18 -0300
303
+ Served asset /jquery_ujs.js - 200 OK (8ms)
304
+
305
+
306
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:33:18 -0300
307
+ Served asset /oops/failure.js - 200 OK (73ms)
308
+
309
+
310
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:33:18 -0300
311
+ Served asset /oops/application.js - 200 OK (19ms)
312
+
313
+
314
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:36:28 -0300
315
+
316
+ ArgumentError (missing :controller):
317
+ config/routes.rb:3:in `block in <top (required)>'
318
+ config/routes.rb:1:in `<top (required)>'
319
+
320
+
321
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
322
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
323
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (45.0ms)
324
+
325
+
326
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:36:47 -0300
327
+
328
+ ArgumentError (missing :controller):
329
+ config/routes.rb:3:in `block in <top (required)>'
330
+ config/routes.rb:1:in `<top (required)>'
331
+
332
+
333
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
334
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
335
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.0ms)
336
+
337
+
338
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:37:15 -0300
339
+ Processing by Oops::FailuresController#index as HTML
340
+ Completed 500 Internal Server Error in 11.0ms
341
+
342
+ NameError (uninitialized constant Oops::FailuresController::Failure):
343
+ C:/Sites/oops/app/controllers/oops/failures_controller.rb:6:in `index'
344
+ actionpack (3.2.22) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
345
+ actionpack (3.2.22) lib/abstract_controller/base.rb:167:in `process_action'
346
+ actionpack (3.2.22) lib/action_controller/metal/rendering.rb:10:in `process_action'
347
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
348
+ activesupport (3.2.22) lib/active_support/callbacks.rb:403:in `_run__758040234__process_action__775290623__callbacks'
349
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
350
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
351
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
352
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:17:in `process_action'
353
+ actionpack (3.2.22) lib/action_controller/metal/rescue.rb:29:in `process_action'
354
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
355
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `block in instrument'
356
+ activesupport (3.2.22) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
357
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `instrument'
358
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
359
+ actionpack (3.2.22) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
360
+ activerecord (3.2.22) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
361
+ actionpack (3.2.22) lib/abstract_controller/base.rb:121:in `process'
362
+ actionpack (3.2.22) lib/abstract_controller/rendering.rb:45:in `process'
363
+ actionpack (3.2.22) lib/action_controller/metal.rb:203:in `dispatch'
364
+ actionpack (3.2.22) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
365
+ actionpack (3.2.22) lib/action_controller/metal.rb:246:in `block in action'
366
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `call'
367
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
368
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:36:in `call'
369
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
370
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
371
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
372
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
373
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
374
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
375
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
376
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
377
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
378
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
379
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
380
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
381
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
382
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
383
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
384
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
385
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
386
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
387
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
388
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
389
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
390
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
391
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__606497367__call__313484376__callbacks'
392
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
393
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
394
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
395
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
396
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
397
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
398
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
399
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
400
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
401
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
402
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
403
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
404
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
405
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
406
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
407
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
408
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
409
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
410
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
411
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
412
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
413
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
414
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
415
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
416
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
417
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
418
+
419
+
420
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
421
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
422
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.0ms)
423
+ Connecting to database specified by database.yml
424
+  (10.0ms) select sqlite_version(*)
425
+  (102.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
426
+  (120.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
427
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
428
+
429
+
430
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:41:42 -0300
431
+ Connecting to database specified by database.yml
432
+ Processing by Oops::FailuresController#index as HTML
433
+ Completed 500 Internal Server Error in 12.0ms
434
+
435
+ NameError (uninitialized constant Oops::FailuresController::Failure):
436
+ C:/Sites/oops/app/controllers/oops/failures_controller.rb:6:in `index'
437
+ actionpack (3.2.22) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
438
+ actionpack (3.2.22) lib/abstract_controller/base.rb:167:in `process_action'
439
+ actionpack (3.2.22) lib/action_controller/metal/rendering.rb:10:in `process_action'
440
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
441
+ activesupport (3.2.22) lib/active_support/callbacks.rb:403:in `_run__316897936__process_action__659281662__callbacks'
442
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
443
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
444
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
445
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:17:in `process_action'
446
+ actionpack (3.2.22) lib/action_controller/metal/rescue.rb:29:in `process_action'
447
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
448
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `block in instrument'
449
+ activesupport (3.2.22) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
450
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `instrument'
451
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
452
+ actionpack (3.2.22) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
453
+ activerecord (3.2.22) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
454
+ actionpack (3.2.22) lib/abstract_controller/base.rb:121:in `process'
455
+ actionpack (3.2.22) lib/abstract_controller/rendering.rb:45:in `process'
456
+ actionpack (3.2.22) lib/action_controller/metal.rb:203:in `dispatch'
457
+ actionpack (3.2.22) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
458
+ actionpack (3.2.22) lib/action_controller/metal.rb:246:in `block in action'
459
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `call'
460
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
461
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:36:in `call'
462
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
463
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
464
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
465
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
466
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
467
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
468
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
469
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
470
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
471
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
472
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
473
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
474
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
475
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
476
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
477
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
478
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
479
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
480
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
481
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
482
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
483
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
484
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__580868910__call__715078130__callbacks'
485
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
486
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
487
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
488
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
489
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
490
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
491
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
492
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
493
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
494
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
495
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
496
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
497
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
498
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
499
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
500
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
501
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
502
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
503
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
504
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
505
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
506
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
507
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
508
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
509
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
510
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
511
+
512
+
513
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
514
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
515
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (53.0ms)
516
+
517
+
518
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:43:29 -0300
519
+ Connecting to database specified by database.yml
520
+ Processing by Oops::FailuresController#index as HTML
521
+ Completed 500 Internal Server Error in 84.1ms
522
+
523
+ ActiveRecord::StatementInvalid (Could not find table 'oops_failures'):
524
+ activerecord (3.2.22) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
525
+ activerecord (3.2.22) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
526
+ activerecord (3.2.22) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
527
+ activerecord (3.2.22) lib/active_record/model_schema.rb:229:in `yield'
528
+ activerecord (3.2.22) lib/active_record/model_schema.rb:229:in `default'
529
+ activerecord (3.2.22) lib/active_record/model_schema.rb:229:in `columns'
530
+ activerecord (3.2.22) lib/active_record/model_schema.rb:238:in `columns_hash'
531
+ activerecord (3.2.22) lib/active_record/locking/optimistic.rb:131:in `locking_enabled?'
532
+ activerecord (3.2.22) lib/active_record/relation.rb:170:in `exec_queries'
533
+ activerecord (3.2.22) lib/active_record/relation.rb:160:in `block in to_a'
534
+ activerecord (3.2.22) lib/active_record/explain.rb:34:in `logging_query_plan'
535
+ activerecord (3.2.22) lib/active_record/relation.rb:159:in `to_a'
536
+ activerecord (3.2.22) lib/active_record/relation/finder_methods.rb:159:in `all'
537
+ C:in `all'
538
+ C:/Sites/oops/app/controllers/oops/failures_controller.rb:6:in `index'
539
+ actionpack (3.2.22) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
540
+ actionpack (3.2.22) lib/abstract_controller/base.rb:167:in `process_action'
541
+ actionpack (3.2.22) lib/action_controller/metal/rendering.rb:10:in `process_action'
542
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
543
+ activesupport (3.2.22) lib/active_support/callbacks.rb:403:in `_run__501745472__process_action__1032431970__callbacks'
544
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
545
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
546
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
547
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:17:in `process_action'
548
+ actionpack (3.2.22) lib/action_controller/metal/rescue.rb:29:in `process_action'
549
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
550
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `block in instrument'
551
+ activesupport (3.2.22) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
552
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `instrument'
553
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
554
+ actionpack (3.2.22) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
555
+ activerecord (3.2.22) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
556
+ actionpack (3.2.22) lib/abstract_controller/base.rb:121:in `process'
557
+ actionpack (3.2.22) lib/abstract_controller/rendering.rb:45:in `process'
558
+ actionpack (3.2.22) lib/action_controller/metal.rb:203:in `dispatch'
559
+ actionpack (3.2.22) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
560
+ actionpack (3.2.22) lib/action_controller/metal.rb:246:in `block in action'
561
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `call'
562
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
563
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:36:in `call'
564
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
565
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
566
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
567
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
568
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
569
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
570
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
571
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
572
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
573
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
574
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
575
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
576
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
577
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
578
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
579
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
580
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
581
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
582
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
583
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
584
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
585
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
586
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__933689453__call__594264568__callbacks'
587
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
588
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
589
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
590
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
591
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
592
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
593
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
594
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
595
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
596
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
597
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
598
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
599
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
600
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
601
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
602
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
603
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
604
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
605
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
606
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
607
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
608
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
609
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
610
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
611
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
612
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
613
+
614
+
615
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
616
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
617
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (78.1ms)
618
+ Connecting to database specified by database.yml
619
+  (15.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
620
+ Migrating to CreateOopsFailures (20150814174650)
621
+  (0.0ms) select sqlite_version(*)
622
+  (0.0ms) begin transaction
623
+  (0.0ms) CREATE TABLE "oops_failures" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "message" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
624
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20150814174650')
625
+  (109.4ms) commit transaction
626
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
627
+
628
+
629
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:50:42 -0300
630
+ Connecting to database specified by database.yml
631
+ Processing by Oops::FailuresController#index as HTML
632
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" 
633
+ Completed 500 Internal Server Error in 232.2ms
634
+
635
+ NoMethodError (undefined method `order' for []:Array):
636
+ C:/Sites/oops/app/controllers/oops/failures_controller.rb:6:in `index'
637
+ actionpack (3.2.22) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
638
+ actionpack (3.2.22) lib/abstract_controller/base.rb:167:in `process_action'
639
+ actionpack (3.2.22) lib/action_controller/metal/rendering.rb:10:in `process_action'
640
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
641
+ activesupport (3.2.22) lib/active_support/callbacks.rb:403:in `_run__262131655__process_action__312276365__callbacks'
642
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
643
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
644
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
645
+ actionpack (3.2.22) lib/abstract_controller/callbacks.rb:17:in `process_action'
646
+ actionpack (3.2.22) lib/action_controller/metal/rescue.rb:29:in `process_action'
647
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
648
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `block in instrument'
649
+ activesupport (3.2.22) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
650
+ activesupport (3.2.22) lib/active_support/notifications.rb:123:in `instrument'
651
+ actionpack (3.2.22) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
652
+ actionpack (3.2.22) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
653
+ activerecord (3.2.22) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
654
+ actionpack (3.2.22) lib/abstract_controller/base.rb:121:in `process'
655
+ actionpack (3.2.22) lib/abstract_controller/rendering.rb:45:in `process'
656
+ actionpack (3.2.22) lib/action_controller/metal.rb:203:in `dispatch'
657
+ actionpack (3.2.22) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
658
+ actionpack (3.2.22) lib/action_controller/metal.rb:246:in `block in action'
659
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `call'
660
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
661
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:36:in `call'
662
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
663
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
664
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
665
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
666
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
667
+ railties (3.2.22) lib/rails/railtie/configurable.rb:30:in `method_missing'
668
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
669
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
670
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
671
+ actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call'
672
+ actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
673
+ rack (1.4.7) lib/rack/etag.rb:23:in `call'
674
+ rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
675
+ actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call'
676
+ actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
677
+ actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call'
678
+ rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
679
+ rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
680
+ actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call'
681
+ activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call'
682
+ activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
683
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
684
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__80227640__call__517596712__callbacks'
685
+ activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback'
686
+ activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
687
+ activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks'
688
+ actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
689
+ actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call'
690
+ actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
691
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
692
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
693
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
694
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
695
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
696
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
697
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
698
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
699
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
700
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
701
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
702
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
703
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
704
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
705
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
706
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
707
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
708
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
709
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
710
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
711
+
712
+
713
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (13.0ms)
714
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (29.0ms)
715
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (129.1ms)
716
+
717
+
718
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
719
+ Processing by Oops::FailuresController#index as HTML
720
+ Oops::Failure Load (0.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
721
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (6.0ms)
722
+ Completed 200 OK in 97.1ms (Views: 93.1ms | ActiveRecord: 1.0ms)
723
+
724
+
725
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
726
+ Served asset /oops/failure.css - 304 Not Modified (10ms)
727
+
728
+
729
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
730
+ Served asset /oops/application.css - 304 Not Modified (14ms)
731
+
732
+
733
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
734
+ Served asset /jquery.js - 304 Not Modified (9ms)
735
+
736
+
737
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
738
+ Served asset /jquery_ujs.js - 304 Not Modified (9ms)
739
+
740
+
741
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
742
+ Served asset /oops/failure.js - 304 Not Modified (9ms)
743
+
744
+
745
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:10 -0300
746
+ Served asset /oops/application.js - 304 Not Modified (78ms)
747
+
748
+
749
+ Started GET "/simulate/failure" for 127.0.0.1 at 2015-08-14 14:51:21 -0300
750
+ Processing by SimulateController#failure as HTML
751
+ Completed 500 Internal Server Error in 1.0ms
752
+
753
+ RuntimeError (Simulating an exception):
754
+ app/controllers/simulate_controller.rb:3:in `failure'
755
+
756
+
757
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
758
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
759
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (46.0ms)
760
+
761
+
762
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
763
+ Processing by Oops::FailuresController#index as HTML
764
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
765
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (2.0ms)
766
+ Completed 200 OK in 21.0ms (Views: 19.0ms | ActiveRecord: 1.0ms)
767
+
768
+
769
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
770
+ Served asset /oops/failure.css - 304 Not Modified (0ms)
771
+
772
+
773
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
774
+ Served asset /jquery.js - 304 Not Modified (1ms)
775
+
776
+
777
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
778
+ Served asset /oops/application.css - 304 Not Modified (0ms)
779
+
780
+
781
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
782
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
783
+
784
+
785
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
786
+ Served asset /oops/application.js - 304 Not Modified (2ms)
787
+
788
+
789
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:51:30 -0300
790
+ Served asset /oops/failure.js - 304 Not Modified (1ms)
791
+
792
+
793
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:55:16 -0300
794
+ Processing by Oops::FailuresController#index as HTML
795
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
796
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (1.0ms)
797
+ Compiled oops/failure.css (0ms) (pid 6728)
798
+ Compiled oops/application.css (4ms) (pid 6728)
799
+ Compiled oops/failure.js (3ms) (pid 6728)
800
+ Compiled oops/application.js (22ms) (pid 6728)
801
+ Completed 200 OK in 2677.8ms (Views: 2676.8ms | ActiveRecord: 1.0ms)
802
+
803
+
804
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:19 -0300
805
+ Served asset /oops/application.css - 304 Not Modified (15ms)
806
+
807
+
808
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:20 -0300
809
+ Served asset /jquery.js - 304 Not Modified (0ms)
810
+
811
+
812
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:20 -0300
813
+ Served asset /oops/failure.css - 200 OK (12ms)
814
+
815
+
816
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:20 -0300
817
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
818
+
819
+
820
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:20 -0300
821
+ Served asset /oops/failure.js - 200 OK (7ms)
822
+
823
+
824
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:20 -0300
825
+ Served asset /oops/application.js - 304 Not Modified (58ms)
826
+
827
+
828
+ Started GET "/" for 127.0.0.1 at 2015-08-14 14:55:23 -0300
829
+
830
+ ActionController::RoutingError (No route matches [GET] "/"):
831
+ actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
832
+ actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
833
+ railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app'
834
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call'
835
+ activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged'
836
+ railties (3.2.22) lib/rails/rack/logger.rb:16:in `call'
837
+ actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call'
838
+ rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
839
+ rack (1.4.7) lib/rack/runtime.rb:17:in `call'
840
+ activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
841
+ rack (1.4.7) lib/rack/lock.rb:15:in `call'
842
+ actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call'
843
+ railties (3.2.22) lib/rails/engine.rb:484:in `call'
844
+ railties (3.2.22) lib/rails/application.rb:231:in `call'
845
+ rack (1.4.7) lib/rack/content_length.rb:14:in `call'
846
+ railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call'
847
+ rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service'
848
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
849
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
850
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
851
+
852
+
853
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
854
+
855
+
856
+ Started GET "/simulate/failure" for 127.0.0.1 at 2015-08-14 14:55:25 -0300
857
+ Processing by SimulateController#failure as HTML
858
+ Completed 500 Internal Server Error in 1.0ms
859
+
860
+ RuntimeError (Simulating an exception):
861
+ app/controllers/simulate_controller.rb:3:in `failure'
862
+
863
+
864
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
865
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
866
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.0ms)
867
+
868
+
869
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:55:27 -0300
870
+ Processing by Oops::FailuresController#index as HTML
871
+ Oops::Failure Load (0.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
872
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (2.0ms)
873
+ Completed 200 OK in 23.0ms (Views: 23.0ms | ActiveRecord: 0.0ms)
874
+
875
+
876
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:28 -0300
877
+ Served asset /oops/application.css - 304 Not Modified (1ms)
878
+
879
+
880
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:28 -0300
881
+ Served asset /oops/failure.css - 304 Not Modified (0ms)
882
+
883
+
884
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:28 -0300
885
+ Served asset /jquery.js - 304 Not Modified (0ms)
886
+
887
+
888
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:28 -0300
889
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
890
+
891
+
892
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:28 -0300
893
+ Served asset /oops/failure.js - 304 Not Modified (0ms)
894
+
895
+
896
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:28 -0300
897
+ Served asset /oops/application.js - 304 Not Modified (2ms)
898
+
899
+
900
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:55:32 -0300
901
+ Processing by Oops::FailuresController#index as HTML
902
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
903
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (2.0ms)
904
+ Completed 200 OK in 21.0ms (Views: 20.0ms | ActiveRecord: 1.0ms)
905
+
906
+
907
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:33 -0300
908
+ Served asset /oops/application.css - 304 Not Modified (3ms)
909
+
910
+
911
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:33 -0300
912
+ Served asset /oops/failure.css - 304 Not Modified (0ms)
913
+
914
+
915
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:33 -0300
916
+ Served asset /jquery.js - 304 Not Modified (0ms)
917
+
918
+
919
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:33 -0300
920
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
921
+
922
+
923
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:33 -0300
924
+ Served asset /oops/failure.js - 304 Not Modified (1ms)
925
+
926
+
927
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:33 -0300
928
+ Served asset /oops/application.js - 304 Not Modified (0ms)
929
+
930
+
931
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:55:34 -0300
932
+ Processing by Oops::FailuresController#index as HTML
933
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
934
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (1.0ms)
935
+ Completed 200 OK in 21.0ms (Views: 20.0ms | ActiveRecord: 1.0ms)
936
+
937
+
938
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:34 -0300
939
+ Served asset /oops/application.css - 304 Not Modified (1ms)
940
+
941
+
942
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:55:35 -0300
943
+ Served asset /oops/failure.css - 304 Not Modified (0ms)
944
+
945
+
946
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:35 -0300
947
+ Served asset /jquery.js - 304 Not Modified (0ms)
948
+
949
+
950
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:35 -0300
951
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
952
+
953
+
954
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:35 -0300
955
+ Served asset /oops/failure.js - 304 Not Modified (0ms)
956
+
957
+
958
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:55:35 -0300
959
+ Served asset /oops/application.js - 304 Not Modified (2ms)
960
+
961
+
962
+ Started GET "/simulate/failure" for 127.0.0.1 at 2015-08-14 14:55:56 -0300
963
+ Processing by SimulateController#failure as HTML
964
+ Completed 500 Internal Server Error in 0.0ms
965
+
966
+ RuntimeError (Simulating an exception):
967
+ app/controllers/simulate_controller.rb:3:in `failure'
968
+
969
+
970
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
971
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
972
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (96.1ms)
973
+
974
+
975
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
976
+ Processing by Oops::FailuresController#index as HTML
977
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
978
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (1.0ms)
979
+ Completed 200 OK in 21.0ms (Views: 20.0ms | ActiveRecord: 1.0ms)
980
+
981
+
982
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
983
+ Served asset /jquery.js - 304 Not Modified (1ms)
984
+
985
+
986
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
987
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
988
+
989
+
990
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
991
+ Served asset /oops/application.css - 304 Not Modified (0ms)
992
+
993
+
994
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
995
+ Served asset /oops/failure.css - 304 Not Modified (0ms)
996
+
997
+
998
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
999
+ Served asset /oops/failure.js - 304 Not Modified (2ms)
1000
+
1001
+
1002
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:56:02 -0300
1003
+ Served asset /oops/application.js - 304 Not Modified (2ms)
1004
+
1005
+
1006
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:57:35 -0300
1007
+ Connecting to database specified by database.yml
1008
+ Processing by Oops::FailuresController#index as HTML
1009
+ Oops::Failure Load (1.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
1010
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (26.0ms)
1011
+ Completed 200 OK in 356.2ms (Views: 177.1ms | ActiveRecord: 10.0ms)
1012
+
1013
+
1014
+ Started GET "/simulate/failure" for 127.0.0.1 at 2015-08-14 14:57:37 -0300
1015
+ Processing by SimulateController#failure as HTML
1016
+  (0.0ms) begin transaction
1017
+ SQL (65.0ms) INSERT INTO "oops_failures" ("created_at", "message", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 14 Aug 2015 17:57:37 UTC +00:00], ["message", "Simulating an exception"], ["name", nil], ["updated_at", Fri, 14 Aug 2015 17:57:37 UTC +00:00]]
1018
+  (98.1ms) commit transaction
1019
+ Completed 500 Internal Server Error in 1.0ms
1020
+
1021
+ RuntimeError (Simulating an exception):
1022
+ app/controllers/simulate_controller.rb:3:in `failure'
1023
+
1024
+
1025
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1026
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1027
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (65.0ms)
1028
+
1029
+
1030
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:57:38 -0300
1031
+ Served asset /jquery.js - 304 Not Modified (11ms)
1032
+
1033
+
1034
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:57:38 -0300
1035
+ Served asset /oops/failure.css - 304 Not Modified (9ms)
1036
+
1037
+
1038
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:57:38 -0300
1039
+ Served asset /oops/application.css - 304 Not Modified (10ms)
1040
+
1041
+
1042
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:57:38 -0300
1043
+ Served asset /jquery_ujs.js - 304 Not Modified (11ms)
1044
+
1045
+
1046
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:57:38 -0300
1047
+ Served asset /oops/failure.js - 304 Not Modified (8ms)
1048
+
1049
+
1050
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:57:38 -0300
1051
+ Served asset /oops/application.js - 304 Not Modified (17ms)
1052
+
1053
+
1054
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:58:02 -0300
1055
+ Processing by Oops::FailuresController#index as HTML
1056
+ Oops::Failure Load (0.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
1057
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (6.0ms)
1058
+ Completed 200 OK in 40.9ms (Views: 39.0ms | ActiveRecord: 0.0ms)
1059
+
1060
+
1061
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:58:02 -0300
1062
+ Served asset /oops/application.css - 304 Not Modified (2ms)
1063
+
1064
+
1065
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:58:02 -0300
1066
+ Served asset /oops/failure.css - 304 Not Modified (0ms)
1067
+
1068
+
1069
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:03 -0300
1070
+ Served asset /jquery.js - 304 Not Modified (0ms)
1071
+
1072
+
1073
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:03 -0300
1074
+ Served asset /oops/failure.js - 304 Not Modified (0ms)
1075
+
1076
+
1077
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:03 -0300
1078
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1079
+
1080
+
1081
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:03 -0300
1082
+ Served asset /oops/application.js - 304 Not Modified (1ms)
1083
+
1084
+
1085
+ Started GET "/oops" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1086
+ Processing by Oops::FailuresController#index as HTML
1087
+ Oops::Failure Load (0.0ms) SELECT "oops_failures".* FROM "oops_failures" ORDER BY created_at DESC
1088
+ Rendered C:/Sites/oops/app/views/oops/failures/index.html.erb within layouts/oops/application (2.0ms)
1089
+ Completed 200 OK in 25.0ms (Views: 24.0ms | ActiveRecord: 0.0ms)
1090
+
1091
+
1092
+ Started GET "/assets/oops/application.css?body=1" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1093
+ Served asset /oops/application.css - 304 Not Modified (2ms)
1094
+
1095
+
1096
+ Started GET "/assets/oops/failure.css?body=1" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1097
+ Served asset /oops/failure.css - 304 Not Modified (1ms)
1098
+
1099
+
1100
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1101
+ Served asset /jquery.js - 304 Not Modified (0ms)
1102
+
1103
+
1104
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1105
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1106
+
1107
+
1108
+ Started GET "/assets/oops/failure.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1109
+ Served asset /oops/failure.js - 304 Not Modified (2ms)
1110
+
1111
+
1112
+ Started GET "/assets/oops/application.js?body=1" for 127.0.0.1 at 2015-08-14 14:58:07 -0300
1113
+ Served asset /oops/application.js - 304 Not Modified (3ms)