hoptoad_notifier 2.3.4 → 2.3.5
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 +11 -0
- data/generators/hoptoad/hoptoad_generator.rb +1 -1
- data/lib/hoptoad_notifier.rb +1 -1
- data/lib/hoptoad_notifier/version.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
Version 2.3.5 - 2010-08-13
|
|
2
|
+
===============================================================================
|
|
3
|
+
|
|
4
|
+
Alexey Palazhchenko (1):
|
|
5
|
+
Actually call #to_hash.
|
|
6
|
+
|
|
7
|
+
Joshua Clayton (1):
|
|
8
|
+
Trace hoptoad:test task when running generator for anything before Rails3
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
Version 2.3.4 - 2010-08-10
|
|
2
12
|
===============================================================================
|
|
3
13
|
|
|
@@ -191,3 +201,4 @@ Nick Quaranto (3):
|
|
|
191
201
|
|
|
192
202
|
|
|
193
203
|
|
|
204
|
+
|
data/lib/hoptoad_notifier.rb
CHANGED
|
@@ -127,7 +127,7 @@ module HoptoadNotifier
|
|
|
127
127
|
def build_notice_for(exception, opts = {})
|
|
128
128
|
exception = unwrap_exception(exception)
|
|
129
129
|
if exception.respond_to?(:to_hash)
|
|
130
|
-
opts = opts.merge(exception)
|
|
130
|
+
opts = opts.merge(exception.to_hash)
|
|
131
131
|
else
|
|
132
132
|
opts = opts.merge(:exception => exception)
|
|
133
133
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hoptoad_notifier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 2.3.
|
|
9
|
+
- 5
|
|
10
|
+
version: 2.3.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- thoughtbot, inc
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-08-
|
|
18
|
+
date: 2010-08-13 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|