exception_notification 2.6.0.rc1 → 2.6.0
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/CHANGELOG.rdoc +40 -0
- data/README.md +1 -5
- data/exception_notification.gemspec +3 -3
- metadata +7 -6
data/CHANGELOG.rdoc
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
== 2.6.0
|
|
2
|
+
|
|
3
|
+
* enhancements
|
|
4
|
+
* Avoid raising exception on dev mode
|
|
5
|
+
* Add ignore_if option to avoid sending certain notifications.
|
|
6
|
+
* Add normalize_subject option to remove numbers from email so that they thread (by @jjb)
|
|
7
|
+
* Allow the user to provide a custom message and hash of data (by @jjb)
|
|
8
|
+
* Add support for configurable background sections and a data partial (by @jeffrafter)
|
|
9
|
+
* Include timestamp of exception in notification body
|
|
10
|
+
* Add support for rack based session management (by @phoet)
|
|
11
|
+
* Add ignore_crawlers option to ignore exceptions generated by crawlers
|
|
12
|
+
* Add verbode_subject option to exclude exception message from subject (by @amishyn)
|
|
13
|
+
|
|
14
|
+
* bug fixes
|
|
15
|
+
* Correctly set view path at the right time so that new sections are properly available (by @scrozier)
|
|
16
|
+
* Fix handling exceptions with no backtrace
|
|
17
|
+
* Fix issue on Solaris with hostname (by @bluescripts)
|
|
18
|
+
* Ensure exceptions in view templates doesn't cause problems, allowing the notification to be sent anyway (by @sce)
|
|
19
|
+
|
|
20
|
+
== 2.5.1
|
|
21
|
+
|
|
22
|
+
* bug fixes
|
|
23
|
+
* Fix lib references on gemspec
|
|
24
|
+
|
|
25
|
+
== 2.5.0
|
|
26
|
+
|
|
27
|
+
* enhancements
|
|
28
|
+
* Add Background Notifications
|
|
29
|
+
|
|
30
|
+
* bug fixes
|
|
31
|
+
* Filter session_id on secure requests
|
|
32
|
+
|
|
33
|
+
== 2.4.1
|
|
34
|
+
|
|
35
|
+
* enhancements
|
|
36
|
+
* Use values set for the middleware as defaults
|
|
37
|
+
|
|
38
|
+
* bug fixes
|
|
39
|
+
* Avoid sending emails with large subjects
|
|
40
|
+
* Avoid having to add 'require' option on gem configuration
|
data/README.md
CHANGED
|
@@ -3,11 +3,7 @@ Exception Notifier Plugin for Rails 
|
metadata
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exception_notification
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.0
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 2.6.0
|
|
5
|
+
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Jamis Buck
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2012-04-
|
|
13
|
+
date: 2012-04-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: actionmailer
|
|
@@ -67,6 +67,7 @@ extensions: []
|
|
|
67
67
|
extra_rdoc_files: []
|
|
68
68
|
files:
|
|
69
69
|
- .gemtest
|
|
70
|
+
- CHANGELOG.rdoc
|
|
70
71
|
- Gemfile
|
|
71
72
|
- Gemfile.lock
|
|
72
73
|
- README.md
|
|
@@ -138,7 +139,7 @@ files:
|
|
|
138
139
|
- test/dummy/test/test_helper.rb
|
|
139
140
|
- test/exception_notification_test.rb
|
|
140
141
|
- test/test_helper.rb
|
|
141
|
-
homepage:
|
|
142
|
+
homepage: http://smartinez87.github.com/exception_notification
|
|
142
143
|
licenses: []
|
|
143
144
|
post_install_message:
|
|
144
145
|
rdoc_options: []
|
|
@@ -153,9 +154,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
153
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
155
|
none: false
|
|
155
156
|
requirements:
|
|
156
|
-
- - ! '
|
|
157
|
+
- - ! '>='
|
|
157
158
|
- !ruby/object:Gem::Version
|
|
158
|
-
version:
|
|
159
|
+
version: '0'
|
|
159
160
|
requirements: []
|
|
160
161
|
rubyforge_project:
|
|
161
162
|
rubygems_version: 1.8.21
|