exception_engine 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/GPLv3.txt +674 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +114 -0
- data/LICENSE.txt +17 -0
- data/README.rdoc +41 -0
- data/Rakefile +29 -0
- data/lib/exception_engine.rb +49 -0
- data/lib/exception_engine/backtrace.rb +100 -0
- data/lib/exception_engine/engine.rb +5 -0
- data/lib/exception_engine/exception_middleware.rb +21 -0
- data/lib/exception_engine/notice.rb +336 -0
- data/lib/exception_engine/version.rb +3 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/posts_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +45 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +22 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +26 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +35 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +60 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +462 -0
- data/test/dummy/log/production.log +0 -0
- data/test/dummy/log/server.log +0 -0
- data/test/dummy/log/test.log +547 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/javascripts/application.js +2 -0
- data/test/dummy/public/javascripts/controls.js +965 -0
- data/test/dummy/public/javascripts/dragdrop.js +974 -0
- data/test/dummy/public/javascripts/effects.js +1123 -0
- data/test/dummy/public/javascripts/prototype.js +6001 -0
- data/test/dummy/public/javascripts/rails.js +175 -0
- data/test/dummy/script/rails +6 -0
- data/test/exception_engine_test.rb +52 -0
- data/test/integration/navigation_test.rb +15 -0
- data/test/support/integration_case.rb +5 -0
- data/test/test_helper.rb +35 -0
- metadata +180 -0
data/test/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require "active_model/railtie"
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_view/railtie"
|
7
|
+
require "action_mailer/railtie"
|
8
|
+
|
9
|
+
Bundler.require
|
10
|
+
require "exception_engine"
|
11
|
+
|
12
|
+
module Dummy
|
13
|
+
class Application < Rails::Application
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
15
|
+
# Application configuration should go into files in config/initializers
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
17
|
+
|
18
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
19
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
20
|
+
|
21
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
22
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
23
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
24
|
+
|
25
|
+
# Activate observers that should always be running.
|
26
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
27
|
+
|
28
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
29
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
30
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
31
|
+
|
32
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
33
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
34
|
+
# config.i18n.default_locale = :de
|
35
|
+
|
36
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
37
|
+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
38
|
+
|
39
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
40
|
+
config.encoding = "utf-8"
|
41
|
+
|
42
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
43
|
+
config.filter_parameters += [:password]
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3-ruby (not necessary on OS X Leopard)
|
3
|
+
development:
|
4
|
+
adapter: sqlite3
|
5
|
+
database: db/development.sqlite3
|
6
|
+
pool: 5
|
7
|
+
timeout: 5000
|
8
|
+
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
10
|
+
# re-generated from your development database when you run "rake".
|
11
|
+
# Do not set this db to the same as development or production.
|
12
|
+
test:
|
13
|
+
adapter: sqlite3
|
14
|
+
database: db/test.sqlite3
|
15
|
+
pool: 5
|
16
|
+
timeout: 5000
|
17
|
+
|
18
|
+
production:
|
19
|
+
adapter: sqlite3
|
20
|
+
database: db/production.sqlite3
|
21
|
+
pool: 5
|
22
|
+
timeout: 5000
|
@@ -0,0 +1,26 @@
|
|
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 webserver 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_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
|
20
|
+
# Print deprecation notices to the Rails logger
|
21
|
+
config.active_support.deprecation = :log
|
22
|
+
|
23
|
+
# Only use best-standards-support built into browsers
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
|
40
|
+
# Enable threaded mode
|
41
|
+
# config.threadsafe!
|
42
|
+
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
45
|
+
config.i18n.fallbacks = true
|
46
|
+
|
47
|
+
# Send deprecation notices to registered listeners
|
48
|
+
config.active_support.deprecation = :notify
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
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
|
+
# Log error messages when you accidentally call methods on nil.
|
11
|
+
config.whiny_nils = true
|
12
|
+
|
13
|
+
# Show full error reports and disable caching
|
14
|
+
config.consider_all_requests_local = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
18
|
+
config.action_dispatch.show_exceptions = false
|
19
|
+
|
20
|
+
# Disable request forgery protection in test environment
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
22
|
+
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
25
|
+
# ActionMailer::Base.deliveries array.
|
26
|
+
config.action_mailer.delivery_method = :test
|
27
|
+
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
+
# like if you have constraints or database-specific column types
|
31
|
+
# config.active_record.schema_format = :sql
|
32
|
+
|
33
|
+
# Print deprecation notices to the stderr
|
34
|
+
config.active_support.deprecation = :stderr
|
35
|
+
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,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1,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 = 'b166d50f93bb14f110b779d94f7273e0ff90cf8d278e5a2585d24bf19d5d86162ddef9b22c36d5d179d839190383f185bb37ea541cb68d69fa64e41148647e0c'
|
@@ -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,60 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
resources :posts
|
3
|
+
|
4
|
+
# The priority is based upon order of creation:
|
5
|
+
# first created -> highest priority.
|
6
|
+
|
7
|
+
# Sample of regular route:
|
8
|
+
# match 'products/:id' => 'catalog#view'
|
9
|
+
# Keep in mind you can assign values other than :controller and :action
|
10
|
+
|
11
|
+
# Sample of named route:
|
12
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
13
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
14
|
+
|
15
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
16
|
+
# resources :products
|
17
|
+
|
18
|
+
# Sample resource route with options:
|
19
|
+
# resources :products do
|
20
|
+
# member do
|
21
|
+
# get 'short'
|
22
|
+
# post 'toggle'
|
23
|
+
# end
|
24
|
+
#
|
25
|
+
# collection do
|
26
|
+
# get 'sold'
|
27
|
+
# end
|
28
|
+
# end
|
29
|
+
|
30
|
+
# Sample resource route with sub-resources:
|
31
|
+
# resources :products do
|
32
|
+
# resources :comments, :sales
|
33
|
+
# resource :seller
|
34
|
+
# end
|
35
|
+
|
36
|
+
# Sample resource route with more complex sub-resources
|
37
|
+
# resources :products do
|
38
|
+
# resources :comments
|
39
|
+
# resources :sales do
|
40
|
+
# get 'recent', :on => :collection
|
41
|
+
# end
|
42
|
+
# end
|
43
|
+
|
44
|
+
# Sample resource route within a namespace:
|
45
|
+
# namespace :admin do
|
46
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
47
|
+
# # (app/controllers/admin/products_controller.rb)
|
48
|
+
# resources :products
|
49
|
+
# end
|
50
|
+
|
51
|
+
# You can have the root of your site routed with "root"
|
52
|
+
# just remember to delete public/index.html.
|
53
|
+
# root :to => "welcome#index"
|
54
|
+
|
55
|
+
# See how all your routes lay out with "rake routes"
|
56
|
+
|
57
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
58
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
59
|
+
# match ':controller(/:action(/:id(.:format)))'
|
60
|
+
end
|
File without changes
|
Binary file
|
@@ -0,0 +1,462 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2011-02-07 17:40:22 +0800
|
4
|
+
|
5
|
+
ActionController::RoutingError (No route matches "/"):
|
6
|
+
|
7
|
+
|
8
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
|
9
|
+
|
10
|
+
|
11
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:40:27 +0800
|
12
|
+
|
13
|
+
ActionController::RoutingError (uninitialized constant ApplicationController::Base):
|
14
|
+
|
15
|
+
|
16
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
|
17
|
+
|
18
|
+
|
19
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:40:52 +0800
|
20
|
+
Processing by ExceptionsController#index as HTML
|
21
|
+
Completed in 107ms
|
22
|
+
|
23
|
+
ActionView::MissingTemplate (Missing template exceptions/index with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/Users/fadhlirahim/Projects/exception_engine/test/dummy/app/views", "/Users/fadhlirahim/Projects/exception_engine/app/views"):
|
24
|
+
|
25
|
+
|
26
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.5ms)
|
27
|
+
|
28
|
+
|
29
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:41:29 +0800
|
30
|
+
Processing by ExceptionsController#index as HTML
|
31
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (5.4ms)
|
32
|
+
Completed 200 OK in 40ms (Views: 14.7ms | ActiveRecord: 0.0ms)
|
33
|
+
|
34
|
+
|
35
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:41:37 +0800
|
36
|
+
Processing by ExceptionsController#index as HTML
|
37
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.3ms)
|
38
|
+
Completed 200 OK in 38ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
39
|
+
|
40
|
+
|
41
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:43:24 +0800
|
42
|
+
Processing by ExceptionsController#index as HTML
|
43
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (14.0ms)
|
44
|
+
Completed 200 OK in 93ms (Views: 22.5ms | ActiveRecord: 0.0ms)
|
45
|
+
|
46
|
+
|
47
|
+
Started GET "/" for 127.0.0.1 at 2011-02-07 17:43:59 +0800
|
48
|
+
|
49
|
+
ActionController::RoutingError (No route matches "/"):
|
50
|
+
|
51
|
+
|
52
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
|
53
|
+
|
54
|
+
|
55
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:44:02 +0800
|
56
|
+
Processing by ExceptionsController#index as HTML
|
57
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.4ms)
|
58
|
+
Completed 200 OK in 38ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
59
|
+
|
60
|
+
|
61
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:44:04 +0800
|
62
|
+
Processing by ExceptionsController#index as HTML
|
63
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.4ms)
|
64
|
+
Completed 200 OK in 86ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
65
|
+
|
66
|
+
|
67
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:44:35 +0800
|
68
|
+
Processing by ExceptionsController#index as HTML
|
69
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.4ms)
|
70
|
+
Completed 200 OK in 37ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
71
|
+
|
72
|
+
|
73
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:46:58 +0800
|
74
|
+
Processing by ExceptionsController#index as HTML
|
75
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.4ms)
|
76
|
+
Completed 200 OK in 39ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
77
|
+
|
78
|
+
|
79
|
+
Started GET "/some_fabricated_path" for 127.0.0.1 at 2011-02-07 17:50:14 +0800
|
80
|
+
|
81
|
+
ActionController::RoutingError (No route matches "/some_fabricated_path"):
|
82
|
+
|
83
|
+
|
84
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
|
85
|
+
|
86
|
+
|
87
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:50:19 +0800
|
88
|
+
Processing by ExceptionsController#index as HTML
|
89
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.8ms)
|
90
|
+
Completed 200 OK in 40ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
91
|
+
|
92
|
+
|
93
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:50:21 +0800
|
94
|
+
Processing by ExceptionsController#index as HTML
|
95
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.6ms)
|
96
|
+
Completed 200 OK in 39ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
97
|
+
|
98
|
+
|
99
|
+
Started GET "/aklsdjfl;askjdf" for 127.0.0.1 at 2011-02-07 17:51:46 +0800
|
100
|
+
|
101
|
+
ActionController::RoutingError (No route matches "/aklsdjfl;askjdf"):
|
102
|
+
|
103
|
+
|
104
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
|
105
|
+
|
106
|
+
|
107
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:51:49 +0800
|
108
|
+
Processing by ExceptionsController#index as HTML
|
109
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.7ms)
|
110
|
+
Completed 200 OK in 97ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
111
|
+
|
112
|
+
|
113
|
+
Started GET "/exceptions/data" for 127.0.0.1 at 2011-02-07 17:51:57 +0800
|
114
|
+
|
115
|
+
ActionController::RoutingError (No route matches "/exceptions/data"):
|
116
|
+
|
117
|
+
|
118
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
|
119
|
+
|
120
|
+
|
121
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:52:00 +0800
|
122
|
+
Processing by ExceptionsController#index as HTML
|
123
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.5ms)
|
124
|
+
Completed 200 OK in 40ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
125
|
+
|
126
|
+
|
127
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-07 17:54:23 +0800
|
128
|
+
Processing by PostsController#index as HTML
|
129
|
+
Completed in 9ms
|
130
|
+
|
131
|
+
NameError (uninitialized constant PostsController::Post):
|
132
|
+
app/controllers/posts_controller.rb:3:in `index'
|
133
|
+
|
134
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
|
135
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.0ms)
|
136
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (285.7ms)
|
137
|
+
|
138
|
+
|
139
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 17:54:28 +0800
|
140
|
+
Processing by ExceptionsController#index as HTML
|
141
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.5ms)
|
142
|
+
Completed 200 OK in 39ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
143
|
+
|
144
|
+
|
145
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-07 18:07:25 +0800
|
146
|
+
Processing by ExceptionsController#index as HTML
|
147
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (4.7ms)
|
148
|
+
Completed 200 OK in 40ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/" for 127.0.0.1 at 2011-02-09 13:38:40 +0800
|
152
|
+
|
153
|
+
ActionController::RoutingError (No route matches "/"):
|
154
|
+
|
155
|
+
|
156
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.1ms)
|
157
|
+
|
158
|
+
|
159
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 13:38:47 +0800
|
160
|
+
Processing by PostsController#index as HTML
|
161
|
+
Completed in 10ms
|
162
|
+
|
163
|
+
NameError (uninitialized constant PostsController::Post):
|
164
|
+
app/controllers/posts_controller.rb:3:in `index'
|
165
|
+
|
166
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
|
167
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.2ms)
|
168
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
|
169
|
+
|
170
|
+
|
171
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 13:38:59 +0800
|
172
|
+
Processing by ExceptionsController#index as HTML
|
173
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (5.6ms)
|
174
|
+
Completed 200 OK in 75ms (Views: 16.5ms | ActiveRecord: 0.0ms)
|
175
|
+
|
176
|
+
|
177
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 14:13:11 +0800
|
178
|
+
Processing by ExceptionsController#index as HTML
|
179
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (5.0ms)
|
180
|
+
Completed 200 OK in 104ms (Views: 24.1ms | ActiveRecord: 0.0ms)
|
181
|
+
|
182
|
+
|
183
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 14:15:52 +0800
|
184
|
+
Processing by PostsController#index as HTML
|
185
|
+
Completed in 13ms
|
186
|
+
|
187
|
+
NameError (uninitialized constant PostsController::Post):
|
188
|
+
app/controllers/posts_controller.rb:3:in `index'
|
189
|
+
|
190
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
|
191
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.9ms)
|
192
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (82.5ms)
|
193
|
+
|
194
|
+
|
195
|
+
Started GET "/posts/4?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:01:56 +0800
|
196
|
+
|
197
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for PostsController):
|
198
|
+
|
199
|
+
|
200
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (1.4ms)
|
201
|
+
|
202
|
+
|
203
|
+
Started GET "/posts/4?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:03:06 +0800
|
204
|
+
|
205
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for PostsController):
|
206
|
+
|
207
|
+
|
208
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (1.3ms)
|
209
|
+
|
210
|
+
|
211
|
+
Started GET "/posts/4?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:03:08 +0800
|
212
|
+
|
213
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for PostsController):
|
214
|
+
|
215
|
+
|
216
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (1.3ms)
|
217
|
+
|
218
|
+
|
219
|
+
Started GET "/posts/4?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:03:09 +0800
|
220
|
+
|
221
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for PostsController):
|
222
|
+
|
223
|
+
|
224
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (1.3ms)
|
225
|
+
|
226
|
+
|
227
|
+
Started GET "/posts?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:03:38 +0800
|
228
|
+
Processing by PostsController#index as HTML
|
229
|
+
Parameters: {"test"=>"1", "dir"=>"90"}
|
230
|
+
Completed in 10ms
|
231
|
+
|
232
|
+
NameError (uninitialized constant PostsController::Post):
|
233
|
+
app/controllers/posts_controller.rb:3:in `index'
|
234
|
+
|
235
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
236
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.5ms)
|
237
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.4ms)
|
238
|
+
|
239
|
+
|
240
|
+
Started GET "/posts?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:08:18 +0800
|
241
|
+
Processing by PostsController#index as HTML
|
242
|
+
Parameters: {"test"=>"1", "dir"=>"90"}
|
243
|
+
Completed in 10ms
|
244
|
+
|
245
|
+
NameError (uninitialized constant PostsController::Post):
|
246
|
+
app/controllers/posts_controller.rb:3:in `index'
|
247
|
+
|
248
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
|
249
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.4ms)
|
250
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.9ms)
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/posts?test=1&dir=90" for 127.0.0.1 at 2011-02-09 16:08:20 +0800
|
254
|
+
Processing by PostsController#index as HTML
|
255
|
+
Parameters: {"test"=>"1", "dir"=>"90"}
|
256
|
+
Completed in 10ms
|
257
|
+
|
258
|
+
NameError (uninitialized constant PostsController::Post):
|
259
|
+
app/controllers/posts_controller.rb:3:in `index'
|
260
|
+
|
261
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
262
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.2ms)
|
263
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.8ms)
|
264
|
+
|
265
|
+
|
266
|
+
Started GET "/posts?test=1&dir=90" for 127.0.0.1 at 2011-02-09 18:01:13 +0800
|
267
|
+
Processing by PostsController#index as HTML
|
268
|
+
Parameters: {"test"=>"1", "dir"=>"90"}
|
269
|
+
Completed in 9ms
|
270
|
+
|
271
|
+
NoMethodError (undefined method `metadata' for #<ExceptionEngine::Backtrace:0x000001014a3448>):
|
272
|
+
|
273
|
+
|
274
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
275
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.3ms)
|
276
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.5ms)
|
277
|
+
|
278
|
+
|
279
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:03:23 +0800
|
280
|
+
Processing by PostsController#index as HTML
|
281
|
+
Completed in 9ms
|
282
|
+
|
283
|
+
TypeError (can't convert ExceptionEngine::Backtrace into Hash):
|
284
|
+
|
285
|
+
|
286
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
|
287
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.6ms)
|
288
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.6ms)
|
289
|
+
|
290
|
+
|
291
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:03:26 +0800
|
292
|
+
Processing by PostsController#index as HTML
|
293
|
+
Completed in 9ms
|
294
|
+
|
295
|
+
TypeError (can't convert ExceptionEngine::Backtrace into Hash):
|
296
|
+
|
297
|
+
|
298
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
299
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.6ms)
|
300
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.9ms)
|
301
|
+
|
302
|
+
|
303
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:04:51 +0800
|
304
|
+
Processing by PostsController#index as HTML
|
305
|
+
Completed in 10ms
|
306
|
+
|
307
|
+
TypeError (can't convert ExceptionEngine::Backtrace into Hash):
|
308
|
+
|
309
|
+
|
310
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
311
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.7ms)
|
312
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.1ms)
|
313
|
+
|
314
|
+
|
315
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:06:51 +0800
|
316
|
+
Processing by PostsController#index as HTML
|
317
|
+
Completed in 9ms
|
318
|
+
|
319
|
+
TypeError (can't convert ExceptionEngine::Backtrace into Hash):
|
320
|
+
|
321
|
+
|
322
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
323
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.9ms)
|
324
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.7ms)
|
325
|
+
|
326
|
+
|
327
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:06:53 +0800
|
328
|
+
Processing by PostsController#index as HTML
|
329
|
+
Completed in 11ms
|
330
|
+
|
331
|
+
TypeError (can't convert ExceptionEngine::Backtrace into Hash):
|
332
|
+
|
333
|
+
|
334
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
335
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (10.6ms)
|
336
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.3ms)
|
337
|
+
|
338
|
+
|
339
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:07:48 +0800
|
340
|
+
Processing by PostsController#index as HTML
|
341
|
+
Completed in 9ms
|
342
|
+
|
343
|
+
NameError (uninitialized constant PostsController::Post):
|
344
|
+
app/controllers/posts_controller.rb:3:in `index'
|
345
|
+
|
346
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
347
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.4ms)
|
348
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
|
349
|
+
|
350
|
+
|
351
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:07:51 +0800
|
352
|
+
Processing by PostsController#index as HTML
|
353
|
+
Completed in 9ms
|
354
|
+
|
355
|
+
NameError (uninitialized constant PostsController::Post):
|
356
|
+
app/controllers/posts_controller.rb:3:in `index'
|
357
|
+
|
358
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
|
359
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (10.6ms)
|
360
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.1ms)
|
361
|
+
|
362
|
+
|
363
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:08:00 +0800
|
364
|
+
Processing by ExceptionsController#index as HTML
|
365
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (6.3ms)
|
366
|
+
Completed 200 OK in 44ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
367
|
+
|
368
|
+
|
369
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:08:02 +0800
|
370
|
+
Processing by ExceptionsController#index as HTML
|
371
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (6.2ms)
|
372
|
+
Completed 200 OK in 48ms (Views: 15.3ms | ActiveRecord: 0.0ms)
|
373
|
+
|
374
|
+
|
375
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:09:32 +0800
|
376
|
+
Processing by ExceptionsController#index as HTML
|
377
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (5.6ms)
|
378
|
+
Completed 200 OK in 86ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
379
|
+
|
380
|
+
|
381
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:13:09 +0800
|
382
|
+
Processing by PostsController#index as HTML
|
383
|
+
Completed in 9ms
|
384
|
+
|
385
|
+
NameError (uninitialized constant PostsController::Post):
|
386
|
+
app/controllers/posts_controller.rb:3:in `index'
|
387
|
+
|
388
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
389
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.0ms)
|
390
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.3ms)
|
391
|
+
|
392
|
+
|
393
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:13:14 +0800
|
394
|
+
Processing by ExceptionsController#index as HTML
|
395
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (5.7ms)
|
396
|
+
Completed 200 OK in 44ms (Views: 14.3ms | ActiveRecord: 0.0ms)
|
397
|
+
|
398
|
+
|
399
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:14:39 +0800
|
400
|
+
Processing by ExceptionsController#index as HTML
|
401
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (50.2ms)
|
402
|
+
Completed 200 OK in 96ms (Views: 58.9ms | ActiveRecord: 0.0ms)
|
403
|
+
|
404
|
+
|
405
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:16:06 +0800
|
406
|
+
Processing by PostsController#index as HTML
|
407
|
+
Completed in 10ms
|
408
|
+
|
409
|
+
NameError (uninitialized constant PostsController::Post):
|
410
|
+
app/controllers/posts_controller.rb:3:in `index'
|
411
|
+
|
412
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
413
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.8ms)
|
414
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
|
415
|
+
|
416
|
+
|
417
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:16:11 +0800
|
418
|
+
Processing by ExceptionsController#index as HTML
|
419
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (54.9ms)
|
420
|
+
Completed 200 OK in 97ms (Views: 63.6ms | ActiveRecord: 0.0ms)
|
421
|
+
|
422
|
+
|
423
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:21:04 +0800
|
424
|
+
Processing by ExceptionsController#index as HTML
|
425
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (60.9ms)
|
426
|
+
Completed 200 OK in 109ms (Views: 73.0ms | ActiveRecord: 0.0ms)
|
427
|
+
|
428
|
+
|
429
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:27:39 +0800
|
430
|
+
Processing by PostsController#index as HTML
|
431
|
+
Completed in 9ms
|
432
|
+
|
433
|
+
NameError (uninitialized constant PostsController::Post):
|
434
|
+
app/controllers/posts_controller.rb:3:in `index'
|
435
|
+
|
436
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
437
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.6ms)
|
438
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.7ms)
|
439
|
+
|
440
|
+
|
441
|
+
Started GET "/posts" for 127.0.0.1 at 2011-02-09 18:27:40 +0800
|
442
|
+
Processing by PostsController#index as HTML
|
443
|
+
Completed in 9ms
|
444
|
+
|
445
|
+
NameError (uninitialized constant PostsController::Post):
|
446
|
+
app/controllers/posts_controller.rb:3:in `index'
|
447
|
+
|
448
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
|
449
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (64.5ms)
|
450
|
+
Rendered /Users/fadhlirahim/.rvm/gems/ruby-1.9.2-p136/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (76.4ms)
|
451
|
+
|
452
|
+
|
453
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:27:46 +0800
|
454
|
+
Processing by ExceptionsController#index as HTML
|
455
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (89.7ms)
|
456
|
+
Completed 200 OK in 137ms (Views: 99.0ms | ActiveRecord: 0.0ms)
|
457
|
+
|
458
|
+
|
459
|
+
Started GET "/exceptions" for 127.0.0.1 at 2011-02-09 18:28:34 +0800
|
460
|
+
Processing by ExceptionsController#index as HTML
|
461
|
+
Rendered /Users/fadhlirahim/Projects/exception_engine/app/views/exceptions/index.html.erb within layouts/application (121.6ms)
|
462
|
+
Completed 200 OK in 160ms (Views: 129.8ms | ActiveRecord: 0.0ms)
|