err_merchant 0.3.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6850fb4a1684211d5c980d5eb12b86dbcc64c995
4
- data.tar.gz: a8478381c4a3af623246e2b76d24351329c8c64a
3
+ metadata.gz: b2f3e3e495914288d0069fea55662f8f0d6dcae5
4
+ data.tar.gz: d7edf43415c77b6e559fc2f831ca2f635e034425
5
5
  SHA512:
6
- metadata.gz: ee446dba8d22eeda9fe27f4ba369430755fb39bf5b823a19b2bcd4cd65cc0163a51e8f01861e9c903fa404b0c5f478ffb0a138863793b4c1721392b405233ae1
7
- data.tar.gz: 0918384e242f95a2cd9a93325f5fe56c68034d3138dd79643263edbc2fd15e37f7d30a204fdd202569e9121820f98f0e3c10b70265ffc1bc0b7b06f51bc0fce4
6
+ metadata.gz: 4a5a9abe830e6c834d32f0c18fc566f6a331a7748df778722e96ecfc8b3c15579fda30ea5ebfb1d6f58f018997ab1b47b4c20933a89f36bc53cc3e8da5160dfd
7
+ data.tar.gz: de85f6696c33216c997b05a7610e5ab82c9a7ae59b09de84ebcf01c9c71470249011ca0fc59580e9a504a86b9ac439bc38b4b4cd87bc7a652717f9b1b1887f58
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ Gemfile.lock
11
+ spec/internal/db/combustion_test.sqlite
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3
4
+
5
+ env:
6
+ - RAILS_VERSION=4.2.0
7
+ - RAILS_VERSION=5.0.0
8
+ - RAILS_VERSION=5.1.0
9
+ - RAILS_VERSION=5.2.0
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ if ENV["RAILS_VERSION"]
6
+ gem "rails", "~> #{ENV['RAILS_VERSION']}"
7
+ end
data/README.rdoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {<img src="https://secure.travis-ci.org/fschwahn/err_merchant.png" />}[http://travis-ci.org/fschwahn/err_merchant]
4
4
 
5
- This is a very simple Rails Engine for replacing the standard (ugly) Rails exception pages with pages which are rendered in your layout. This solution works seamlessly with Airbrake[http://airbrake.io/].
5
+ This is a very simple Rails Engine for replacing the standard (ugly) Rails exception pages with pages which are rendered in your layout.
6
6
 
7
7
  == Installation
8
8
  Add the gem to your Gemfile, run `bundle install` and restart your server:
@@ -16,6 +16,7 @@ Yes, these files are used as a fallback if +err_merchant+ itself raises an excep
16
16
 
17
17
  == Configuration
18
18
  * +ErrMerchant.layout+: Can be used to set the layout for the error pages. By default the application-layout is used.
19
+ * +ErrMerchant.skip_filters+: Can be used to skip certain filters when rendering errors. Most common are filters by authorization gems like `cancan` or `pundit` which ensure that authorization happens. These have to be skipped when rendering error pages. (example: `ErrMerchant.skip_filters[:after] = [:verify_authorized]` for pundit)
19
20
 
20
21
  == I18n
21
22
  You can translate the error messages, by default they are the same as the standard Rails errors:
@@ -34,6 +35,13 @@ You can translate the error messages, by default they are the same as the standa
34
35
  Please note that there are translations missing in development mode if you don't supply translations for your locale. In production however, +config.i18n.fallbacks+ is usually set to +true+, so the error messages for the default locale will be shown if the lookup is not successful.
35
36
 
36
37
  == Changelog
38
+ === 0.5.0 (2018-08-09)
39
+ * ErrorsController inherits from ApplicationController again (so helpers etc. defined there are available). Added ErrMerchant.skip_filters for previously hardcoded behavior.
40
+
41
+ === 0.4.0 (2018-08-09)
42
+ * Relax rails requirements
43
+ * Remove special cases for CanCan / Pundit, instead inherit from ActionController::Base (so we don't get any before_action we don't like)
44
+
37
45
  === 0.3.1 (2014-11-08)
38
46
  * works with `pundit` now
39
47
  * show error messages raw
data/Rakefile CHANGED
@@ -1,28 +1,5 @@
1
- #!/usr/bin/env rake
2
- begin
3
- require 'bundler/setup'
4
- rescue LoadError
5
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
- end
7
- begin
8
- require 'rdoc/task'
9
- rescue LoadError
10
- require 'rdoc/rdoc'
11
- require 'rake/rdoctask'
12
- RDoc::Task = Rake::RDocTask
13
- end
14
-
15
- RDoc::Task.new(:rdoc) do |rdoc|
16
- rdoc.rdoc_dir = 'rdoc'
17
- rdoc.title = 'ErrMerchant'
18
- rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.rdoc')
20
- rdoc.rdoc_files.include('lib/**/*.rb')
21
- end
22
-
23
- Bundler::GemHelper.install_tasks
24
-
25
- require 'rspec/core/rake_task'
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
26
3
  RSpec::Core::RakeTask.new
27
4
 
28
5
  task :default => :spec
@@ -1,20 +1,21 @@
1
- class ErrMerchant::ErrorsController < ApplicationController
2
- skip_authorization_check if defined?(::CanCan)
3
- skip_after_filter :verify_authorized if defined?(::Pundit)
1
+ class ErrMerchant::ErrorsController < ::ApplicationController
2
+ ErrMerchant.skip_filters.each do |filter_type, filters|
3
+ send(:"skip_#{filter_type}_action", *filters) if filters.any?
4
+ end
4
5
 
5
6
  ERRORS = {
6
- :internal_server_error => 500,
7
- :not_found => 404,
8
- :conflict => 409,
9
- :unprocessable_entity => 422,
10
- :method_not_allowed => 405,
11
- :not_implemented => 501
7
+ internal_server_error: 500,
8
+ not_found: 404,
9
+ conflict: 409,
10
+ unprocessable_entity: 422,
11
+ method_not_allowed: 405,
12
+ not_implemented: 501
12
13
  }.freeze
13
14
 
14
15
  ERRORS.each do |e, status_code|
15
16
  define_method e do
16
17
  respond_to do |format|
17
- format.html { render 'template', :locals => {:status_code => status_code}, :layout => ErrMerchant.layout, :status => e }
18
+ format.html { render "template", locals: { status_code: status_code }, layout: ErrMerchant.layout, status: e }
18
19
  format.any { head e }
19
20
  end
20
21
  end
data/config.ru ADDED
@@ -0,0 +1,7 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+
4
+ Bundler.require :default, :development
5
+
6
+ Combustion.initialize!
7
+ run Combustion::Application
@@ -0,0 +1,29 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "err_merchant/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "err_merchant"
8
+ spec.version = ErrMerchant::VERSION
9
+ spec.authors = ["Fabian Schwahn"]
10
+ spec.email = ["fabian.schwahn@gmail.com"]
11
+
12
+ spec.summary = "Rails Engine for rendering error pages"
13
+ spec.homepage = "https://github.com/fschwahn/err_merchant"
14
+ spec.license = "MIT"
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ end
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_dependency 'rails', '>= 3.2', '<= 5.2'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_development_dependency 'combustion', '~> 0.9.1'
26
+ spec.add_development_dependency 'sqlite3'
27
+ spec.add_development_dependency 'rspec-rails', '~> 3.0'
28
+ spec.add_development_dependency 'capybara', '>= 2.2'
29
+ end
@@ -8,6 +8,5 @@ module ErrMerchant
8
8
  rescue
9
9
  ActionDispatch::PublicExceptions.new(Rails.root.join('public')).call(env)
10
10
  end
11
-
12
11
  end
13
- end
12
+ end
@@ -1,3 +1,3 @@
1
1
  module ErrMerchant
2
- VERSION = "0.3.1"
2
+ VERSION = "0.5.0"
3
3
  end
data/lib/err_merchant.rb CHANGED
@@ -3,6 +3,9 @@ require 'active_support/core_ext/module/attribute_accessors'
3
3
  module ErrMerchant
4
4
  mattr_accessor :layout
5
5
  @@layout = 'application'
6
+
7
+ mattr_accessor :skip_filters
8
+ @@skip_filters = { before: [], after: [], around: [] }
6
9
  end
7
10
 
8
- require 'err_merchant/engine'
11
+ require 'err_merchant/engine'
metadata CHANGED
@@ -1,139 +1,130 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: err_merchant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabian Schwahn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-08 00:00:00.000000000 Z
11
+ date: 2018-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.2'
20
- - - <
20
+ - - "<="
21
21
  - !ruby/object:Gem::Version
22
- version: '5.0'
22
+ version: '5.2'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - '>='
27
+ - - ">="
28
28
  - !ruby/object:Gem::Version
29
29
  version: '3.2'
30
- - - <
30
+ - - "<="
31
31
  - !ruby/object:Gem::Version
32
- version: '5.0'
32
+ version: '5.2'
33
33
  - !ruby/object:Gem::Dependency
34
- name: combustion
34
+ name: rake
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ~>
37
+ - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 0.5.2
39
+ version: '10.0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ~>
44
+ - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: 0.5.2
46
+ version: '10.0'
47
47
  - !ruby/object:Gem::Dependency
48
- name: sqlite3
48
+ name: combustion
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - '>='
51
+ - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '0'
53
+ version: 0.9.1
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - '>='
58
+ - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0'
60
+ version: 0.9.1
61
61
  - !ruby/object:Gem::Dependency
62
- name: airbrake
62
+ name: sqlite3
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - '>='
65
+ - - ">="
66
66
  - !ruby/object:Gem::Version
67
67
  version: '0'
68
68
  type: :development
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - '>='
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: rspec-rails
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - ~>
79
+ - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '2.0'
81
+ version: '3.0'
82
82
  type: :development
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
- - - ~>
86
+ - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '2.0'
88
+ version: '3.0'
89
89
  - !ruby/object:Gem::Dependency
90
90
  name: capybara
91
91
  requirement: !ruby/object:Gem::Requirement
92
92
  requirements:
93
- - - ~>
93
+ - - ">="
94
94
  - !ruby/object:Gem::Version
95
- version: '1.0'
95
+ version: '2.2'
96
96
  type: :development
97
97
  prerelease: false
98
98
  version_requirements: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - ~>
100
+ - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: '1.0'
103
- description: Rails Engine for rendering error pages
102
+ version: '2.2'
103
+ description:
104
104
  email:
105
105
  - fabian.schwahn@gmail.com
106
106
  executables: []
107
107
  extensions: []
108
108
  extra_rdoc_files: []
109
109
  files:
110
+ - ".gitignore"
111
+ - ".travis.yml"
112
+ - Gemfile
110
113
  - MIT-LICENSE
111
114
  - README.rdoc
112
115
  - Rakefile
113
116
  - app/controllers/err_merchant/errors_controller.rb
114
117
  - app/views/err_merchant/errors/template.html.erb
118
+ - config.ru
115
119
  - config/locales/en.yml
120
+ - err_merchant.gemspec
116
121
  - lib/err_merchant.rb
117
122
  - lib/err_merchant/engine.rb
118
123
  - lib/err_merchant/exceptions_app.rb
119
124
  - lib/err_merchant/version.rb
120
- - spec/err_merchant_spec.rb
121
- - spec/internal/app/controllers/application_controller.rb
122
- - spec/internal/app/controllers/failures_controller.rb
123
- - spec/internal/app/views/failures/usual_action.html.erb
124
- - spec/internal/app/views/layouts/application.html.erb
125
- - spec/internal/app/views/layouts/erroneous.html.erb
126
- - spec/internal/config/database.yml
127
- - spec/internal/config/locales/de.yml
128
- - spec/internal/config/routes.rb
129
- - spec/internal/db/combustion_test.sqlite
130
- - spec/internal/db/schema.rb
131
- - spec/internal/log/test.log
132
- - spec/internal/public/500.html
133
- - spec/internal/public/favicon.ico
134
- - spec/spec_helper.rb
135
125
  homepage: https://github.com/fschwahn/err_merchant
136
- licenses: []
126
+ licenses:
127
+ - MIT
137
128
  metadata: {}
138
129
  post_install_message:
139
130
  rdoc_options: []
@@ -141,33 +132,18 @@ require_paths:
141
132
  - lib
142
133
  required_ruby_version: !ruby/object:Gem::Requirement
143
134
  requirements:
144
- - - '>='
135
+ - - ">="
145
136
  - !ruby/object:Gem::Version
146
137
  version: '0'
147
138
  required_rubygems_version: !ruby/object:Gem::Requirement
148
139
  requirements:
149
- - - '>='
140
+ - - ">="
150
141
  - !ruby/object:Gem::Version
151
142
  version: '0'
152
143
  requirements: []
153
144
  rubyforge_project:
154
- rubygems_version: 2.4.2
145
+ rubygems_version: 2.5.2.3
155
146
  signing_key:
156
147
  specification_version: 4
157
148
  summary: Rails Engine for rendering error pages
158
- test_files:
159
- - spec/err_merchant_spec.rb
160
- - spec/internal/app/controllers/application_controller.rb
161
- - spec/internal/app/controllers/failures_controller.rb
162
- - spec/internal/app/views/failures/usual_action.html.erb
163
- - spec/internal/app/views/layouts/application.html.erb
164
- - spec/internal/app/views/layouts/erroneous.html.erb
165
- - spec/internal/config/database.yml
166
- - spec/internal/config/locales/de.yml
167
- - spec/internal/config/routes.rb
168
- - spec/internal/db/combustion_test.sqlite
169
- - spec/internal/db/schema.rb
170
- - spec/internal/log/test.log
171
- - spec/internal/public/500.html
172
- - spec/internal/public/favicon.ico
173
- - spec/spec_helper.rb
149
+ test_files: []
@@ -1,67 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe 'ErrMerchant' do
4
- it 'shows a 500 when an exception is raised' do
5
- visit '/failures/wild_error'
6
-
7
- page.should have_content("We're sorry, but something went wrong.")
8
- page.status_code.should == 500
9
- end
10
-
11
- it 'shows a 404 when record not found' do
12
- visit '/failures/where_is_it'
13
-
14
- page.should have_content("The page you were looking for doesn't exist.")
15
- page.status_code.should == 404
16
- end
17
-
18
- it 'shows a 422 when an unprocessable entity is encountered' do
19
- visit '/failures/dont_process_this'
20
-
21
- page.should have_content("The change you wanted was rejected.")
22
- page.status_code.should == 422
23
- end
24
-
25
- it 'shows the error in the application layout' do
26
- visit '/failures/wild_error'
27
-
28
- page.should have_content("ErrMerchant Test Application")
29
- end
30
-
31
- it 'does not kick in if there are no errors' do
32
- visit '/failures/usual_action'
33
-
34
- page.should have_content("This is a usual action.")
35
- page.status_code.should == 200
36
- end
37
-
38
- it 'shows translated error messages if available' do
39
- I18n.locale = :de
40
- visit '/failures/where_is_it'
41
-
42
- page.should have_content("Seite nicht gefunden")
43
- end
44
-
45
- it 'shows english error message when no translation available' do
46
- I18n.locale = :fr
47
- visit '/failures/wild_error'
48
-
49
- page.should have_content("We're sorry, but something went wrong.")
50
- end
51
-
52
- it 'falls back to standard error pages if everything goes wrong' do
53
- ErrMerchant.layout = "erroneous"
54
-
55
- visit '/failures/wild_error'
56
- page.should have_content("We're sorry, but something went wrong.")
57
- page.status_code.should == 500
58
- page.should_not have_css('div.err_merchant')
59
- page.should have_css('div.dialog h1')
60
- end
61
-
62
- it 'should deliver airbrake notifications' do
63
- pending
64
- Airbrake.should_receive(:notify_or_ignore)
65
- visit '/failures/wild_error'
66
- end
67
- end
@@ -1,3 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- protect_from_forgery
3
- end
@@ -1,16 +0,0 @@
1
- class FailuresController < ApplicationController
2
- def usual_action
3
- end
4
-
5
- def wild_error
6
- raise
7
- end
8
-
9
- def where_is_it
10
- raise ActiveRecord::RecordNotFound
11
- end
12
-
13
- def dont_process_this
14
- raise ActiveRecord::RecordNotSaved
15
- end
16
- end
@@ -1 +0,0 @@
1
- <p>This is a usual action.</p>
@@ -1,7 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <body>
4
- <h1>ErrMerchant Test Application</h1>
5
- <%= yield %>
6
- </body>
7
- </html>
@@ -1 +0,0 @@
1
- <% raise %>
@@ -1,3 +0,0 @@
1
- test:
2
- adapter: sqlite3
3
- database: db/combustion_test.sqlite
@@ -1,4 +0,0 @@
1
- de:
2
- err_merchant:
3
- '404':
4
- title: "Seite nicht gefunden"
@@ -1,3 +0,0 @@
1
- Rails.application.routes.draw do
2
- match ':controller(/:action(/:id(.:format)))', via: :get
3
- end
File without changes
@@ -1,692 +0,0 @@
1
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
4
- Processing by FailuresController#wild_error as HTML
5
- Completed 500 Internal Server Error in 0ms
6
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
7
- Processing by FailuresController#where_is_it as HTML
8
- Completed 404 Not Found in 0ms
9
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
10
- Processing by FailuresController#dont_process_this as HTML
11
- Completed 422 Unprocessable Entity in 0ms
12
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
13
- Processing by FailuresController#wild_error as HTML
14
- Completed 500 Internal Server Error in 0ms
15
- Started GET "/failures/usual_action" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
16
- Processing by FailuresController#usual_action as HTML
17
- Rendered failures/usual_action.html.erb within layouts/application (2.8ms)
18
- Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms)
19
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
20
- Processing by FailuresController#where_is_it as HTML
21
- Completed 404 Not Found in 0ms
22
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
23
- Processing by FailuresController#wild_error as HTML
24
- Completed 500 Internal Server Error in 0ms
25
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
26
- Processing by FailuresController#wild_error as HTML
27
- Completed 500 Internal Server Error in 0ms
28
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 17:54:16 +0200
29
- Processing by FailuresController#wild_error as HTML
30
- Completed 500 Internal Server Error in 0ms
31
-  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
32
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
34
- Processing by FailuresController#wild_error as HTML
35
- Completed 500 Internal Server Error in 0ms
36
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
37
- Processing by FailuresController#where_is_it as HTML
38
- Completed 404 Not Found in 0ms
39
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
40
- Processing by FailuresController#dont_process_this as HTML
41
- Completed 422 Unprocessable Entity in 0ms
42
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
43
- Processing by FailuresController#wild_error as HTML
44
- Completed 500 Internal Server Error in 0ms
45
- Started GET "/failures/usual_action" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
46
- Processing by FailuresController#usual_action as HTML
47
- Rendered failures/usual_action.html.erb within layouts/application (3.0ms)
48
- Completed 200 OK in 49ms (Views: 49.1ms | ActiveRecord: 0.0ms)
49
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
50
- Processing by FailuresController#where_is_it as HTML
51
- Completed 404 Not Found in 0ms
52
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
53
- Processing by FailuresController#wild_error as HTML
54
- Completed 500 Internal Server Error in 0ms
55
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
56
- Processing by FailuresController#wild_error as HTML
57
- Completed 500 Internal Server Error in 0ms
58
- Started GET "/failures/wild_error" for 127.0.0.1 at 2013-07-09 18:01:38 +0200
59
- Processing by FailuresController#wild_error as HTML
60
- Completed 500 Internal Server Error in 0ms
61
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
62
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
64
- Processing by FailuresController#wild_error as HTML
65
- Completed 500 Internal Server Error in 0ms
66
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
67
- Processing by FailuresController#where_is_it as HTML
68
- Completed 404 Not Found in 0ms
69
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
70
- Processing by FailuresController#dont_process_this as HTML
71
- Completed 422 Unprocessable Entity in 0ms
72
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
73
- Processing by FailuresController#wild_error as HTML
74
- Completed 500 Internal Server Error in 0ms
75
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
76
- Processing by FailuresController#usual_action as HTML
77
- Rendered failures/usual_action.html.erb within layouts/application (1.5ms)
78
- Completed 200 OK in 42ms (Views: 41.5ms | ActiveRecord: 0.0ms)
79
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
80
- Processing by FailuresController#where_is_it as HTML
81
- Completed 404 Not Found in 0ms
82
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
83
- Processing by FailuresController#wild_error as HTML
84
- Completed 500 Internal Server Error in 0ms
85
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
86
- Processing by FailuresController#wild_error as HTML
87
- Completed 500 Internal Server Error in 0ms
88
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:42:22 +0200
89
- Processing by FailuresController#wild_error as HTML
90
- Completed 500 Internal Server Error in 0ms
91
-  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
92
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
93
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
94
- Processing by FailuresController#wild_error as HTML
95
- Completed 500 Internal Server Error in 0ms
96
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
97
- Processing by FailuresController#where_is_it as HTML
98
- Completed 404 Not Found in 0ms
99
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
100
- Processing by FailuresController#dont_process_this as HTML
101
- Completed 422 Unprocessable Entity in 0ms
102
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
103
- Processing by FailuresController#wild_error as HTML
104
- Completed 500 Internal Server Error in 0ms
105
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
106
- Processing by FailuresController#usual_action as HTML
107
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
108
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
109
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
110
- Processing by FailuresController#where_is_it as HTML
111
- Completed 404 Not Found in 0ms
112
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
113
- Processing by FailuresController#wild_error as HTML
114
- Completed 500 Internal Server Error in 0ms
115
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:51:52 +0200
116
- Processing by FailuresController#wild_error as HTML
117
- Completed 500 Internal Server Error in 0ms
118
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
119
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
120
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
121
- Processing by FailuresController#wild_error as HTML
122
- Completed 500 Internal Server Error in 0ms
123
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
124
- Processing by FailuresController#where_is_it as HTML
125
- Completed 404 Not Found in 0ms
126
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
127
- Processing by FailuresController#dont_process_this as HTML
128
- Completed 422 Unprocessable Entity in 0ms
129
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
130
- Processing by FailuresController#wild_error as HTML
131
- Completed 500 Internal Server Error in 0ms
132
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
133
- Processing by FailuresController#usual_action as HTML
134
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
135
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
136
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
137
- Processing by FailuresController#where_is_it as HTML
138
- Completed 404 Not Found in 0ms
139
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
140
- Processing by FailuresController#wild_error as HTML
141
- Completed 500 Internal Server Error in 0ms
142
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:52:06 +0200
143
- Processing by FailuresController#wild_error as HTML
144
- Completed 500 Internal Server Error in 0ms
145
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
146
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
147
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
148
- Processing by FailuresController#wild_error as HTML
149
- Completed 500 Internal Server Error in 0ms
150
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
151
- Processing by FailuresController#where_is_it as HTML
152
- Completed 404 Not Found in 0ms
153
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
154
- Processing by FailuresController#dont_process_this as HTML
155
- Completed 422 Unprocessable Entity in 0ms
156
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
157
- Processing by FailuresController#wild_error as HTML
158
- Completed 500 Internal Server Error in 0ms
159
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
160
- Processing by FailuresController#usual_action as HTML
161
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
162
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
163
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
164
- Processing by FailuresController#where_is_it as HTML
165
- Completed 404 Not Found in 0ms
166
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
167
- Processing by FailuresController#wild_error as HTML
168
- Completed 500 Internal Server Error in 0ms
169
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:06 +0200
170
- Processing by FailuresController#wild_error as HTML
171
- Completed 500 Internal Server Error in 0ms
172
-  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
173
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
175
- Processing by FailuresController#wild_error as HTML
176
- Completed 500 Internal Server Error in 0ms
177
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
178
- Processing by FailuresController#where_is_it as HTML
179
- Completed 404 Not Found in 0ms
180
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
181
- Processing by FailuresController#dont_process_this as HTML
182
- Completed 422 Unprocessable Entity in 0ms
183
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
184
- Processing by FailuresController#wild_error as HTML
185
- Completed 500 Internal Server Error in 0ms
186
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
187
- Processing by FailuresController#usual_action as HTML
188
- Rendered failures/usual_action.html.erb within layouts/application (0.9ms)
189
- Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
190
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
191
- Processing by FailuresController#where_is_it as HTML
192
- Completed 404 Not Found in 0ms
193
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
194
- Processing by FailuresController#wild_error as HTML
195
- Completed 500 Internal Server Error in 0ms
196
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:53:32 +0200
197
- Processing by FailuresController#wild_error as HTML
198
- Completed 500 Internal Server Error in 0ms
199
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
200
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
201
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
202
- Processing by FailuresController#where_is_it as HTML
203
- Completed 404 Not Found in 0ms
204
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
205
- Processing by FailuresController#dont_process_this as HTML
206
- Completed 422 Unprocessable Entity in 0ms
207
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
208
- Processing by FailuresController#wild_error as HTML
209
- Completed 500 Internal Server Error in 0ms
210
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
211
- Processing by FailuresController#usual_action as HTML
212
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
213
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
214
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
215
- Processing by FailuresController#where_is_it as HTML
216
- Completed 404 Not Found in 0ms
217
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
218
- Processing by FailuresController#wild_error as HTML
219
- Completed 500 Internal Server Error in 0ms
220
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:54:37 +0200
221
- Processing by FailuresController#wild_error as HTML
222
- Completed 500 Internal Server Error in 0ms
223
-  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
224
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
225
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:55:47 +0200
226
- Processing by FailuresController#wild_error as HTML
227
- Completed 500 Internal Server Error in 0ms
228
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:55:47 +0200
229
- Processing by FailuresController#where_is_it as HTML
230
- Completed 404 Not Found in 0ms
231
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:55:48 +0200
232
- Processing by FailuresController#dont_process_this as HTML
233
- Completed 422 Unprocessable Entity in 0ms
234
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:55:48 +0200
235
- Processing by FailuresController#wild_error as HTML
236
- Completed 500 Internal Server Error in 0ms
237
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:55:48 +0200
238
- Processing by FailuresController#usual_action as HTML
239
- Rendered failures/usual_action.html.erb within layouts/application (0.8ms)
240
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
241
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:55:48 +0200
242
- Processing by FailuresController#where_is_it as HTML
243
- Completed 404 Not Found in 0ms
244
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:55:48 +0200
245
- Processing by FailuresController#wild_error as HTML
246
- Completed 500 Internal Server Error in 0ms
247
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:55:48 +0200
248
- Processing by FailuresController#wild_error as HTML
249
- Completed 500 Internal Server Error in 0ms
250
-  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
251
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
252
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
253
- Processing by FailuresController#wild_error as HTML
254
- Completed 500 Internal Server Error in 0ms
255
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
256
- Processing by FailuresController#where_is_it as HTML
257
- Completed 404 Not Found in 0ms
258
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
259
- Processing by FailuresController#dont_process_this as HTML
260
- Completed 422 Unprocessable Entity in 0ms
261
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
262
- Processing by FailuresController#wild_error as HTML
263
- Completed 500 Internal Server Error in 0ms
264
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
265
- Processing by FailuresController#usual_action as HTML
266
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
267
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
268
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
269
- Processing by FailuresController#where_is_it as HTML
270
- Completed 404 Not Found in 0ms
271
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
272
- Processing by FailuresController#wild_error as HTML
273
- Completed 500 Internal Server Error in 0ms
274
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:56:48 +0200
275
- Processing by FailuresController#wild_error as HTML
276
- Completed 500 Internal Server Error in 0ms
277
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
278
-  (6.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
279
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
280
- Processing by FailuresController#wild_error as HTML
281
- Completed 500 Internal Server Error in 0ms
282
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
283
- Processing by FailuresController#where_is_it as HTML
284
- Completed 404 Not Found in 0ms
285
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
286
- Processing by FailuresController#dont_process_this as HTML
287
- Completed 422 Unprocessable Entity in 0ms
288
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
289
- Processing by FailuresController#wild_error as HTML
290
- Completed 500 Internal Server Error in 0ms
291
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
292
- Processing by FailuresController#usual_action as HTML
293
- Rendered failures/usual_action.html.erb within layouts/application (1.2ms)
294
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
295
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
296
- Processing by FailuresController#where_is_it as HTML
297
- Completed 404 Not Found in 0ms
298
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:58:34 +0200
299
- Processing by FailuresController#wild_error as HTML
300
- Completed 500 Internal Server Error in 0ms
301
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:58:35 +0200
302
- Processing by FailuresController#wild_error as HTML
303
- Completed 500 Internal Server Error in 0ms
304
-  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
305
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
306
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
307
- Processing by FailuresController#wild_error as HTML
308
- Completed 500 Internal Server Error in 0ms
309
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
310
- Processing by FailuresController#where_is_it as HTML
311
- Completed 404 Not Found in 0ms
312
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
313
- Processing by FailuresController#dont_process_this as HTML
314
- Completed 422 Unprocessable Entity in 0ms
315
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
316
- Processing by FailuresController#wild_error as HTML
317
- Completed 500 Internal Server Error in 0ms
318
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
319
- Processing by FailuresController#usual_action as HTML
320
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
321
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
322
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
323
- Processing by FailuresController#where_is_it as HTML
324
- Completed 404 Not Found in 0ms
325
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
326
- Processing by FailuresController#wild_error as HTML
327
- Completed 500 Internal Server Error in 0ms
328
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 01:59:59 +0200
329
- Processing by FailuresController#wild_error as HTML
330
- Completed 500 Internal Server Error in 0ms
331
-  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
332
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
333
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
334
- Processing by FailuresController#wild_error as HTML
335
- Completed 500 Internal Server Error in 0ms
336
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
337
- Processing by FailuresController#where_is_it as HTML
338
- Completed 404 Not Found in 0ms
339
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
340
- Processing by FailuresController#dont_process_this as HTML
341
- Completed 422 Unprocessable Entity in 0ms
342
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
343
- Processing by FailuresController#wild_error as HTML
344
- Completed 500 Internal Server Error in 0ms
345
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
346
- Processing by FailuresController#usual_action as HTML
347
- Rendered failures/usual_action.html.erb within layouts/application (0.7ms)
348
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
349
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
350
- Processing by FailuresController#where_is_it as HTML
351
- Completed 404 Not Found in 0ms
352
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
353
- Processing by FailuresController#wild_error as HTML
354
- Completed 500 Internal Server Error in 0ms
355
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:00:50 +0200
356
- Processing by FailuresController#wild_error as HTML
357
- Completed 500 Internal Server Error in 0ms
358
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
359
- Processing by FailuresController#wild_error as HTML
360
- Completed 500 Internal Server Error in 0ms
361
-
362
- RuntimeError ():
363
- app/controllers/failures_controller.rb:6:in `wild_error'
364
-
365
-
366
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
367
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (7.6ms)
368
- Completed 500 Internal Server Error in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
369
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
370
- Processing by FailuresController#where_is_it as HTML
371
- Completed 404 Not Found in 29ms
372
-
373
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
374
- app/controllers/failures_controller.rb:10:in `where_is_it'
375
-
376
-
377
- Processing by ErrMerchant::ErrorsController#not_found as HTML
378
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
379
- Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
380
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
381
- Processing by FailuresController#dont_process_this as HTML
382
- Completed 422 Unprocessable Entity in 0ms
383
-
384
- ActiveRecord::RecordNotSaved (ActiveRecord::RecordNotSaved):
385
- app/controllers/failures_controller.rb:14:in `dont_process_this'
386
-
387
-
388
- Processing by ErrMerchant::ErrorsController#unprocessable_entity as HTML
389
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
390
- Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
391
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
392
- Processing by FailuresController#wild_error as HTML
393
- Completed 500 Internal Server Error in 0ms
394
-
395
- RuntimeError ():
396
- app/controllers/failures_controller.rb:6:in `wild_error'
397
-
398
-
399
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
400
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
401
- Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
402
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
403
- Processing by FailuresController#usual_action as HTML
404
- Rendered failures/usual_action.html.erb within layouts/application (0.3ms)
405
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
406
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
407
- Processing by FailuresController#where_is_it as HTML
408
- Completed 404 Not Found in 0ms
409
-
410
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
411
- app/controllers/failures_controller.rb:10:in `where_is_it'
412
-
413
-
414
- Processing by ErrMerchant::ErrorsController#not_found as HTML
415
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.5ms)
416
- Completed 404 Not Found in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
417
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
418
- Processing by FailuresController#wild_error as HTML
419
- Completed 500 Internal Server Error in 0ms
420
-
421
- RuntimeError ():
422
- app/controllers/failures_controller.rb:6:in `wild_error'
423
-
424
-
425
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
426
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.5ms)
427
- Completed 500 Internal Server Error in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
428
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:02:03 +0200
429
- Processing by FailuresController#wild_error as HTML
430
- Completed 500 Internal Server Error in 0ms
431
-
432
- RuntimeError ():
433
- app/controllers/failures_controller.rb:6:in `wild_error'
434
-
435
-
436
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
437
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/erroneous (0.2ms)
438
- Completed 500 Internal Server Error in 4ms
439
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
440
- Processing by FailuresController#wild_error as HTML
441
- Completed 500 Internal Server Error in 0ms
442
-
443
- RuntimeError ():
444
- app/controllers/failures_controller.rb:6:in `wild_error'
445
-
446
-
447
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
448
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (7.7ms)
449
- Completed 500 Internal Server Error in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
450
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
451
- Processing by FailuresController#where_is_it as HTML
452
- Completed 404 Not Found in 0ms
453
-
454
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
455
- app/controllers/failures_controller.rb:10:in `where_is_it'
456
-
457
-
458
- Processing by ErrMerchant::ErrorsController#not_found as HTML
459
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
460
- Completed 404 Not Found in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
461
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
462
- Processing by FailuresController#dont_process_this as HTML
463
- Completed 422 Unprocessable Entity in 29ms
464
-
465
- ActiveRecord::RecordNotSaved (ActiveRecord::RecordNotSaved):
466
- app/controllers/failures_controller.rb:14:in `dont_process_this'
467
-
468
-
469
- Processing by ErrMerchant::ErrorsController#unprocessable_entity as HTML
470
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
471
- Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
472
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
473
- Processing by FailuresController#wild_error as HTML
474
- Completed 500 Internal Server Error in 0ms
475
-
476
- RuntimeError ():
477
- app/controllers/failures_controller.rb:6:in `wild_error'
478
-
479
-
480
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
481
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
482
- Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
483
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
484
- Processing by FailuresController#usual_action as HTML
485
- Rendered failures/usual_action.html.erb within layouts/application (0.3ms)
486
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
487
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
488
- Processing by FailuresController#where_is_it as HTML
489
- Completed 404 Not Found in 0ms
490
-
491
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
492
- app/controllers/failures_controller.rb:10:in `where_is_it'
493
-
494
-
495
- Processing by ErrMerchant::ErrorsController#not_found as HTML
496
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.5ms)
497
- Completed 404 Not Found in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
498
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
499
- Processing by FailuresController#wild_error as HTML
500
- Completed 500 Internal Server Error in 0ms
501
-
502
- RuntimeError ():
503
- app/controllers/failures_controller.rb:6:in `wild_error'
504
-
505
-
506
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
507
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.6ms)
508
- Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
509
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:03:56 +0200
510
- Processing by FailuresController#wild_error as HTML
511
- Completed 500 Internal Server Error in 0ms
512
-
513
- RuntimeError ():
514
- app/controllers/failures_controller.rb:6:in `wild_error'
515
-
516
-
517
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
518
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/erroneous (0.3ms)
519
- Completed 500 Internal Server Error in 4ms
520
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
521
- Processing by FailuresController#wild_error as HTML
522
- Completed 500 Internal Server Error in 0ms
523
-
524
- RuntimeError ():
525
- app/controllers/failures_controller.rb:6:in `wild_error'
526
-
527
-
528
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
529
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (33.8ms)
530
- Completed 500 Internal Server Error in 38ms (Views: 37.9ms | ActiveRecord: 0.0ms)
531
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
532
- Processing by FailuresController#where_is_it as HTML
533
- Completed 404 Not Found in 0ms
534
-
535
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
536
- app/controllers/failures_controller.rb:10:in `where_is_it'
537
-
538
-
539
- Processing by ErrMerchant::ErrorsController#not_found as HTML
540
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
541
- Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
542
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
543
- Processing by FailuresController#dont_process_this as HTML
544
- Completed 422 Unprocessable Entity in 0ms
545
-
546
- ActiveRecord::RecordNotSaved (ActiveRecord::RecordNotSaved):
547
- app/controllers/failures_controller.rb:14:in `dont_process_this'
548
-
549
-
550
- Processing by ErrMerchant::ErrorsController#unprocessable_entity as HTML
551
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
552
- Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
553
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
554
- Processing by FailuresController#wild_error as HTML
555
- Completed 500 Internal Server Error in 0ms
556
-
557
- RuntimeError ():
558
- app/controllers/failures_controller.rb:6:in `wild_error'
559
-
560
-
561
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
562
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
563
- Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
564
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
565
- Processing by FailuresController#usual_action as HTML
566
- Rendered failures/usual_action.html.erb within layouts/application (0.3ms)
567
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
568
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
569
- Processing by FailuresController#where_is_it as HTML
570
- Completed 404 Not Found in 0ms
571
-
572
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
573
- app/controllers/failures_controller.rb:10:in `where_is_it'
574
-
575
-
576
- Processing by ErrMerchant::ErrorsController#not_found as HTML
577
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.6ms)
578
- Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
579
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
580
- Processing by FailuresController#wild_error as HTML
581
- Completed 500 Internal Server Error in 0ms
582
-
583
- RuntimeError ():
584
- app/controllers/failures_controller.rb:6:in `wild_error'
585
-
586
-
587
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
588
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.7ms)
589
- Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
590
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
591
- Processing by FailuresController#wild_error as HTML
592
- Completed 500 Internal Server Error in 0ms
593
-
594
- RuntimeError ():
595
- app/controllers/failures_controller.rb:6:in `wild_error'
596
-
597
-
598
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
599
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/erroneous (0.2ms)
600
- Completed 500 Internal Server Error in 3ms
601
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:06:12 +0200
602
- Processing by FailuresController#wild_error as HTML
603
- Completed 500 Internal Server Error in 0ms
604
-
605
- RuntimeError ():
606
- app/controllers/failures_controller.rb:6:in `wild_error'
607
-
608
-
609
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
610
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/erroneous (0.3ms)
611
- Completed 500 Internal Server Error in 1ms
612
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
613
- Processing by FailuresController#wild_error as HTML
614
- Completed 500 Internal Server Error in 0ms
615
-
616
- RuntimeError ():
617
- app/controllers/failures_controller.rb:6:in `wild_error'
618
-
619
-
620
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
621
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (4.5ms)
622
- Completed 500 Internal Server Error in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
623
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
624
- Processing by FailuresController#where_is_it as HTML
625
- Completed 404 Not Found in 0ms
626
-
627
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
628
- app/controllers/failures_controller.rb:10:in `where_is_it'
629
-
630
-
631
- Processing by ErrMerchant::ErrorsController#not_found as HTML
632
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
633
- Completed 404 Not Found in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
634
- Started GET "/failures/dont_process_this" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
635
- Processing by FailuresController#dont_process_this as HTML
636
- Completed 422 Unprocessable Entity in 0ms
637
-
638
- ActiveRecord::RecordNotSaved (ActiveRecord::RecordNotSaved):
639
- app/controllers/failures_controller.rb:14:in `dont_process_this'
640
-
641
-
642
- Processing by ErrMerchant::ErrorsController#unprocessable_entity as HTML
643
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.2ms)
644
- Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
645
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
646
- Processing by FailuresController#wild_error as HTML
647
- Completed 500 Internal Server Error in 0ms
648
-
649
- RuntimeError ():
650
- app/controllers/failures_controller.rb:6:in `wild_error'
651
-
652
-
653
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
654
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.1ms)
655
- Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
656
- Started GET "/failures/usual_action" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
657
- Processing by FailuresController#usual_action as HTML
658
- Rendered failures/usual_action.html.erb within layouts/application (0.3ms)
659
- Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
660
- Started GET "/failures/where_is_it" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
661
- Processing by FailuresController#where_is_it as HTML
662
- Completed 404 Not Found in 0ms
663
-
664
- ActiveRecord::RecordNotFound (ActiveRecord::RecordNotFound):
665
- app/controllers/failures_controller.rb:10:in `where_is_it'
666
-
667
-
668
- Processing by ErrMerchant::ErrorsController#not_found as HTML
669
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.5ms)
670
- Completed 404 Not Found in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
671
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
672
- Processing by FailuresController#wild_error as HTML
673
- Completed 500 Internal Server Error in 0ms
674
-
675
- RuntimeError ():
676
- app/controllers/failures_controller.rb:6:in `wild_error'
677
-
678
-
679
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
680
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/application (0.5ms)
681
- Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
682
- Started GET "/failures/wild_error" for 127.0.0.1 at 2014-10-24 02:08:57 +0200
683
- Processing by FailuresController#wild_error as HTML
684
- Completed 500 Internal Server Error in 0ms
685
-
686
- RuntimeError ():
687
- app/controllers/failures_controller.rb:6:in `wild_error'
688
-
689
-
690
- Processing by ErrMerchant::ErrorsController#internal_server_error as HTML
691
- Rendered /Users/fabian/code/gems/err_merchant/app/views/err_merchant/errors/template.html.erb within layouts/erroneous (0.4ms)
692
- Completed 500 Internal Server Error in 4ms
@@ -1,26 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>We're sorry, but something went wrong (500)</title>
5
- <style type="text/css">
6
- body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
- div.dialog {
8
- width: 25em;
9
- padding: 0 4em;
10
- margin: 4em auto 0 auto;
11
- border: 1px solid #ccc;
12
- border-right-color: #999;
13
- border-bottom-color: #999;
14
- }
15
- h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
- </style>
17
- </head>
18
-
19
- <body>
20
- <!-- This file lives in public/500.html -->
21
- <div class="dialog">
22
- <h1>We're sorry, but something went wrong.</h1>
23
- <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
- </div>
25
- </body>
26
- </html>
File without changes
data/spec/spec_helper.rb DELETED
@@ -1,14 +0,0 @@
1
- require 'rubygems'
2
- require 'bundler/setup'
3
-
4
- require 'combustion'
5
- require 'capybara/rspec'
6
-
7
- Combustion.initialize! :all do
8
- config.action_dispatch.show_exceptions = true
9
- config.consider_all_requests_local = false
10
- config.i18n.fallbacks = true
11
- end
12
-
13
- require 'rspec/rails'
14
- require 'capybara/rails'