exception_notification 2.6.0.rc1 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 ![project status](http://stillmaintained.com
3
3
 
4
4
  The Exception Notifier plugin provides a mailer object and a default set of
5
5
  templates for sending email notifications when errors occur in a Rails
6
- application. The plugin is configurable, allowing programmers to specify:
7
-
8
- * the sender address of the email
9
- * the recipient addresses
10
- * the text used to prefix the subject line
6
+ application.
11
7
 
12
8
  The email includes information about the current request, session, and
13
9
  environment, and also gives a backtrace of the exception.
@@ -1,10 +1,10 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'exception_notification'
3
- s.version = '2.6.0.rc1'
3
+ s.version = '2.6.0'
4
4
  s.authors = ["Jamis Buck", "Josh Peek"]
5
- s.date = %q{2012-04-05}
5
+ s.date = %q{2012-04-13}
6
6
  s.summary = "Exception notification by email for Rails apps"
7
- s.homepage = "https://github.com/smartinez87/exception_notification"
7
+ s.homepage = "http://smartinez87.github.com/exception_notification"
8
8
  s.email = "smartinez87@gmail.com"
9
9
 
10
10
  s.files = `git ls-files`.split("\n")
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.rc1
5
- prerelease: 6
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-05 00:00:00.000000000 Z
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: https://github.com/smartinez87/exception_notification
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: 1.3.1
159
+ version: '0'
159
160
  requirements: []
160
161
  rubyforge_project:
161
162
  rubygems_version: 1.8.21