super_exception_notifier 3.0.10 → 3.0.11

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-18 v3.0.11
2
+ - Added correct view to Rakefile to include with build. (Jeweler had missed it because it was the wrong filename)
3
+
1
4
  2010-06-18 v3.0.10
2
5
  - Added view to gemspec to include with build. (Not sure why Jeweler missed it)
3
6
 
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 3
3
3
  :build:
4
4
  :minor: 0
5
- :patch: 10
5
+ :patch: 11
@@ -0,0 +1,15 @@
1
+ <% unless @request.nil? -%>
2
+ <%= @request.protocol %><%= @host %><%= @request.request_uri %>
3
+ <% end -%>
4
+ A <%= @exception.class %> occurred in <%= @location %>:
5
+ <%= @exception.message %>
6
+ <%= @backtrace.first %>
7
+
8
+ <% if @data[:info] -%>
9
+ <%=@data[:info].to_yaml%>
10
+ <% end -%>
11
+
12
+ <% unless @the_blamed.nil? || @the_blamed[:author].nil? %>
13
+ Git Blame: '<%=@the_blamed[:author]%>' last modified line #<%=@the_blamed[:line]%> in <%=@the_blamed[:file]%>
14
+ <% end%>
15
+ <%= @sections.map { |section| render_section(section) }.join %>
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{super_exception_notifier}
8
- s.version = "3.0.10"
8
+ s.version = "3.0.11"
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"]
@@ -60,6 +60,7 @@ Gem::Specification.new do |s|
60
60
  "lib/views/exception_notification/notifier/_session.html.erb",
61
61
  "lib/views/exception_notification/notifier/_title.html.erb",
62
62
  "lib/views/exception_notification/notifier/background_exception_notification.text.plain.erb",
63
+ "lib/views/exception_notification/notifier/exception_notification.text.plain.erb",
63
64
  "lib/views/exception_notification/notifier/rake_exception_notification.text.plain.erb",
64
65
  "rails/app/views/exception_notifiable/400.html",
65
66
  "rails/app/views/exception_notifiable/403.html",
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: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 10
10
- version: 3.0.10
9
+ - 11
10
+ version: 3.0.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Peter Boling
@@ -104,6 +104,7 @@ files:
104
104
  - lib/views/exception_notification/notifier/_session.html.erb
105
105
  - lib/views/exception_notification/notifier/_title.html.erb
106
106
  - lib/views/exception_notification/notifier/background_exception_notification.text.plain.erb
107
+ - lib/views/exception_notification/notifier/exception_notification.text.plain.erb
107
108
  - lib/views/exception_notification/notifier/rake_exception_notification.text.plain.erb
108
109
  - rails/app/views/exception_notifiable/400.html
109
110
  - rails/app/views/exception_notifiable/403.html