jcnetdev / exception_notification forked from rails/exception_notification

Exception Notifier Plugin for Rails

This URL has Read+Write access

jcnetdev (author)
Mon Jul 28 00:12:53 -0700 2008
commit  637d81455e95e8a3bef815ecec6ca36ee8b64c9b
tree    828e8b801bc223d283395523e949b547c82a86b8
parent  62296f8e0c4cc8c2f2183d30d3f04ebda5ca8e54
exception_notification / exception_notification.gemspec
100644 41 lines (33 sloc) 1.397 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Gem::Specification.new do |s|
  s.name = 'exception_notification'
  s.version = '1.3'
  s.date = '2008-07-28'
   
  s.summary = "Allows unhandled exceptions to be captured and sent via email"
  s.description = ""
  
  s.authors = ['Jacques Crocker', 'Jamis Buck']
  s.email = 'railsjedi@gmail.com'
  s.homepage = 'http://github.com/jcnetdev/exception_notification'
  
  s.has_rdoc = true
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
 
  s.add_dependency 'rails', ['>= 2.1']
  
  s.files = ["MIT-LICENSE",
             "README",
             "exception_notification.gemspec",
             "init.rb",
             "lib/exception_notifiable.rb",
             "lib/exception_notification.rb",
             "lib/exception_notifier.rb",
             "lib/exception_notifier_helper.rb",
             "lib/notifiable.rb",
             "rails/init.rb",
             "views/exception_notifier/_backtrace.rhtml",
             "views/exception_notifier/_environment.rhtml",
             "views/exception_notifier/_inspect_model.rhtml",
             "views/exception_notifier/_request.rhtml",
             "views/exception_notifier/_session.rhtml",
             "views/exception_notifier/_title.rhtml",
             "views/exception_notifier/exception_notification.rhtml"]
  
 
  s.test_files = ["test/exception_notifier_helper_test.rb",
                  "test/test_helper.rb"]
 
end