super_exception_notifier 3.0.10 → 3.0.11
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/CHANGELOG.txt
CHANGED
data/VERSION.yml
CHANGED
|
@@ -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.
|
|
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:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 3
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 3.0.
|
|
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
|