super_exception_notifier 3.0.12 → 3.0.13

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.txt CHANGED
@@ -1,3 +1,6 @@
1
+ 2010-06-30 v3.0.13
2
+ - Fixed homepage in Rakefile, noted Rails 3 incompatibility in README.
3
+
1
4
  2010-06-25 v3.0.12
2
5
  - Improved clarity of readme.
3
6
 
data/README CHANGED
@@ -25,7 +25,7 @@ is configurable, allowing programmers to customize (settings are per environment
25
25
  notifiable { method }
26
26
  * Can notify of errors in Rake tasks using 'NotifiedTask.new' instead of 'task' when writing tasks
27
27
  * Works with Hoptoad Notifier, so you can notify via SEN and/or Hoptoad for any particular errors.
28
- * Tested with Rails 2.3.x, should work with rails 2.2.x, and might work with rails 3.
28
+ * Tested with Rails 2.3.x, should work with Rails 2.2.x, and is apparently not yet compatible with Rails 3.
29
29
 
30
30
  The email includes information about the current request, session, and
31
31
  environment, and also gives a backtrace of the exception.
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 3
3
3
  :build:
4
4
  :minor: 0
5
- :patch: 12
5
+ :patch: 13
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{super_exception_notifier}
8
- s.version = "3.0.12"
8
+ s.version = "3.0.13"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Peter Boling", "Scott Windsor", "Ismael Celis", "Jacques Crocker", "Jamis Buck"]
12
- s.date = %q{2010-06-25}
12
+ s.date = %q{2010-06-30}
13
13
  s.description = %q{Allows customization of:
14
14
  * Specify which level of notification you would like with an array of optional styles of notification (email, webhooks)
15
15
  * the sender address of the email
@@ -28,7 +28,9 @@ Gem::Specification.new do |s|
28
28
  * Hooks into `git blame` output so you can get an idea of who (may) have introduced the bug
29
29
  * Hooks into other website services (e.g. you can send exceptions to to Switchub.com)
30
30
  * Can notify of errors occurring in any class/method using notifiable { method }
31
- * Can notify of errors in Rake tasks using NotifiedTask.new instead of task}
31
+ * Can notify of errors in Rake tasks using NotifiedTask.new instead of task
32
+ * Works with Hoptoad Notifier, so you can notify via SEN and/or Hoptoad for any particular errors.
33
+ * Tested with Rails 2.3.x, should work with rails 2.2.x, and is apparently not yet compatible with rails 3.}
32
34
  s.email = %q{peter.boling@gmail.com}
33
35
  s.extra_rdoc_files = [
34
36
  "README"
@@ -77,7 +79,7 @@ Gem::Specification.new do |s|
77
79
  "rails/init.rb",
78
80
  "super_exception_notifier.gemspec"
79
81
  ]
80
- s.homepage = %q{http://github.com/pboling/exception_notifiable}
82
+ s.homepage = %q{http://github.com/pboling/exception_notification}
81
83
  s.rdoc_options = ["--charset=UTF-8"]
82
84
  s.require_paths = ["lib"]
83
85
  s.rubygems_version = %q{1.3.7}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_exception_notifier
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 12
10
- version: 3.0.12
9
+ - 13
10
+ version: 3.0.13
11
11
  platform: ruby
12
12
  authors:
13
13
  - Peter Boling
@@ -19,7 +19,7 @@ autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
21
 
22
- date: 2010-06-25 00:00:00 -04:00
22
+ date: 2010-06-30 00:00:00 -04:00
23
23
  default_executable:
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
@@ -70,6 +70,8 @@ description: |-
70
70
  * Hooks into other website services (e.g. you can send exceptions to to Switchub.com)
71
71
  * Can notify of errors occurring in any class/method using notifiable { method }
72
72
  * Can notify of errors in Rake tasks using NotifiedTask.new instead of task
73
+ * Works with Hoptoad Notifier, so you can notify via SEN and/or Hoptoad for any particular errors.
74
+ * Tested with Rails 2.3.x, should work with rails 2.2.x, and is apparently not yet compatible with rails 3.
73
75
  email: peter.boling@gmail.com
74
76
  executables: []
75
77
 
@@ -128,7 +130,7 @@ files:
128
130
  - test/notifiable_test.rb
129
131
  - test/test_helper.rb
130
132
  has_rdoc: true
131
- homepage: http://github.com/pboling/exception_notifiable
133
+ homepage: http://github.com/pboling/exception_notification
132
134
  licenses: []
133
135
 
134
136
  post_install_message: