oboe 2.7.17.1-java → 2.7.18-java
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/lib/oboe/frameworks/rails/inst/action_controller.rb +3 -3
- data/lib/oboe/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93ba6ca6e90578dc3c4452920f4f5cbe273e47f3
|
4
|
+
data.tar.gz: 5c384c3787a643649687e0de6fa097bcc458421b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2297117842076a4a8bb0c688c24e6b0ac7259fa70eff8c587e2353a942cb3e9f6416f82556270e057fe2efedf55c5a6c1d03790bc1b4b2dbab3e4cc6196c3ed7
|
7
|
+
data.tar.gz: 18859da8ba47dbcb043b2439deaaea40ce41556edb606fcb4e3ee307b226ad70459e8ad48c583be88c53a99f004b1b2feef14d55e17d553767faf6ae4dda5573
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,17 @@ https://github.com/appneta/oboe-ruby/releases
|
|
4
4
|
|
5
5
|
Dates in this file are in the format MM/DD/YYYY.
|
6
6
|
|
7
|
+
# oboe 2.7.18
|
8
|
+
|
9
|
+
This patch release includes the following fix:
|
10
|
+
|
11
|
+
* For custom ActionView renderers, properly accept and pass on blocks: #118
|
12
|
+
|
13
|
+
Pushed to Rubygems:
|
14
|
+
|
15
|
+
https://rubygems.org/gems/oboe/versions/2.7.18
|
16
|
+
https://rubygems.org/gems/oboe/versions/2.7.18-java
|
17
|
+
|
7
18
|
# oboe 2.7.17.1
|
8
19
|
|
9
20
|
This patch release includes:
|
@@ -58,9 +58,9 @@ module Oboe
|
|
58
58
|
# Our render wrapper that just times and conditionally
|
59
59
|
# reports raised exceptions
|
60
60
|
#
|
61
|
-
def render_with_oboe(*args)
|
61
|
+
def render_with_oboe(*args, &blk)
|
62
62
|
Oboe::API.log_entry('actionview')
|
63
|
-
render_without_oboe(*args)
|
63
|
+
render_without_oboe(*args, &blk)
|
64
64
|
|
65
65
|
rescue Exception => e
|
66
66
|
Oboe::API.log_exception(nil, e) if log_rails_error?(e)
|
@@ -106,7 +106,7 @@ module Oboe
|
|
106
106
|
Oboe::API.log(nil, 'info', report_kvs)
|
107
107
|
|
108
108
|
process_action_without_oboe *args
|
109
|
-
rescue Exception
|
109
|
+
rescue Exception
|
110
110
|
report_kvs[:Status] = 500
|
111
111
|
Oboe::API.log(nil, 'info', report_kvs)
|
112
112
|
raise
|
data/lib/oboe/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oboe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.18
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Peter Giacomo Lombardo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-05-
|
12
|
+
date: 2015-05-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|