wrangler 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/wrangler.gemspec +9 -4
- metadata +11 -5
data/wrangler.gemspec
CHANGED
@@ -5,14 +5,19 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{wrangler}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Brian Percival"]
|
12
12
|
s.date = %q{2009-11-13}
|
13
|
-
s.description = %q{
|
14
|
-
|
15
|
-
|
13
|
+
s.description = %q{A gem for handling exceptions thrown inside your Rails app. If you include the
|
14
|
+
gem in your application controller, Wrangler will render the error pages you
|
15
|
+
configure for each exception or HTTP error code. It will also handle notifying
|
16
|
+
you via email when certain exceptions are raised. Allows for configuration of
|
17
|
+
which exceptions map to which error pages, which exceptions result in emails
|
18
|
+
being sent. Also allows for asynchronous email sending via delayed job so that
|
19
|
+
error pages don't take forever to load. See README for lots of info on how to
|
20
|
+
get started and what configuration options are available.
|
16
21
|
}
|
17
22
|
s.email = %q{percivalatumamibuddotcom}
|
18
23
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wrangler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Percival
|
@@ -22,10 +22,16 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
-
description:
|
26
|
-
|
27
|
-
|
28
|
-
|
25
|
+
description: |
|
26
|
+
A gem for handling exceptions thrown inside your Rails app. If you include the
|
27
|
+
gem in your application controller, Wrangler will render the error pages you
|
28
|
+
configure for each exception or HTTP error code. It will also handle notifying
|
29
|
+
you via email when certain exceptions are raised. Allows for configuration of
|
30
|
+
which exceptions map to which error pages, which exceptions result in emails
|
31
|
+
being sent. Also allows for asynchronous email sending via delayed job so that
|
32
|
+
error pages don't take forever to load. See README for lots of info on how to
|
33
|
+
get started and what configuration options are available.
|
34
|
+
|
29
35
|
email: percivalatumamibuddotcom
|
30
36
|
executables: []
|
31
37
|
|