pboling-super_exception_notifier 1.6.6 → 1.6.7

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 CHANGED
@@ -54,7 +54,7 @@ Gem Using Git building from source:
54
54
  git clone git://github.com/pboling/exception_notification.git
55
55
  cd exception_notification
56
56
  gem build exception_notification.gemspec
57
- sudo gem install super_exception_notification-1.6.4.gem # (Or whatever version gets built)
57
+ sudo gem install super_exception_notification-1.6.7.gem # (Or whatever version gets built)
58
58
 
59
59
  Then cd to your rails app to optionally freeze the gem into your app:
60
60
 
@@ -63,7 +63,7 @@ Then cd to your rails app to optionally freeze the gem into your app:
63
63
  Then in your environment.rb:
64
64
 
65
65
  config.gem 'super_exception_notifier',
66
- :version => '~> 1.6.5',
66
+ :version => '~> 1.6.7',
67
67
  :lib => "exception_notifier"
68
68
 
69
69
 
@@ -75,7 +75,7 @@ Installing Gem from Github's Gem Server:
75
75
  Then in your environment.rb:
76
76
 
77
77
  config.gem 'pboling-super_exception_notifier',
78
- :version => '~> 1.6.5',
78
+ :version => '~> 1.6.7',
79
79
  :lib => "exception_notifier",
80
80
  :source => 'http://gems.github.com'
81
81
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 6
4
- :patch: 6
4
+ :patch: 7
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'super_exception_notifier'
3
- s.version = '1.6.6'
4
- s.date = '2009-08-13'
3
+ s.version = '1.6.7'
4
+ s.date = '2009-08-14'
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
 
7
7
  s.summary = %q{Allows unhandled (and handled!) exceptions to be captured and sent via email}
data/rails/init.rb CHANGED
@@ -3,7 +3,8 @@ require "action_mailer"
3
3
  require File.join(File.dirname(__FILE__), '..', 'lib', "super_exception_notifier", "custom_exception_classes")
4
4
  require File.join(File.dirname(__FILE__), '..', 'lib', "super_exception_notifier", "custom_exception_methods")
5
5
 
6
- $:.unshift "#{File.dirname(__FILE__)}/lib"
6
+ # Add this path to ruby load path
7
+ $:.unshift "#{File.dirname(__FILE__)}/../lib"
7
8
 
8
9
  require "hooks_notifier"
9
10
  require "exception_notifier"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pboling-super_exception_notifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.6
4
+ version: 1.6.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2009-08-13 00:00:00 -07:00
14
+ date: 2009-08-14 00:00:00 -07:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency