super_exception_notifier 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +3 -3
- data/VERSION.yml +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -80,7 +80,7 @@ Gemcutter is the hot new gem host, and you can use it like this:
|
|
|
80
80
|
|
|
81
81
|
Then in your environment.rb:
|
|
82
82
|
|
|
83
|
-
config.gem '
|
|
83
|
+
config.gem 'super_exception_notifier',
|
|
84
84
|
:version => '~> 2.0.0',
|
|
85
85
|
:lib => "exception_notifier",
|
|
86
86
|
|
|
@@ -95,7 +95,7 @@ SVN Plugin (very deprecated, no longer updated, DO NOT USE, install Git!):
|
|
|
95
95
|
|
|
96
96
|
== Exceptions Without a Controller
|
|
97
97
|
|
|
98
|
-
You may
|
|
98
|
+
You may use SEN to send information about exceptions that
|
|
99
99
|
occur while running application scripts without a controller. Simply wrap the
|
|
100
100
|
code you want to watch with the notifiable method:
|
|
101
101
|
|
|
@@ -185,7 +185,7 @@ The available configuration options are shown with their default settings:
|
|
|
185
185
|
"404" => "Not Found",
|
|
186
186
|
"405" => "Method Not Allowed",
|
|
187
187
|
"410" => "Gone",
|
|
188
|
-
"418" => "I
|
|
188
|
+
"418" => "I'm a teapot",
|
|
189
189
|
"422" => "Unprocessable Entity",
|
|
190
190
|
"423" => "Locked",
|
|
191
191
|
"500" => "Internal Server Error",
|
data/VERSION.yml
CHANGED