oboe 2.7.17.1-java → 2.7.18-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f5af7c88e442b978109bfd9e26216d22ba96ebbc
4
- data.tar.gz: 87967943c1a3c45db5e9576a9dd629eb4207254c
3
+ metadata.gz: 93ba6ca6e90578dc3c4452920f4f5cbe273e47f3
4
+ data.tar.gz: 5c384c3787a643649687e0de6fa097bcc458421b
5
5
  SHA512:
6
- metadata.gz: f534a642ed23073afa600719331797cfe7981d007918d18b172776e0a31783e260dc288bc3d7d8b507abae3abc51356f6581aa170af0cfa763bef5190fae9f8a
7
- data.tar.gz: 2babaaa796835cc02dade64dd032ce6f154dbb491e25c54b7f34da1acaf604a06ccf9bac8a27eb8fa6ea0b97daf17999000ebf494e15046ae18c4c377e76f116
6
+ metadata.gz: 2297117842076a4a8bb0c688c24e6b0ac7259fa70eff8c587e2353a942cb3e9f6416f82556270e057fe2efedf55c5a6c1d03790bc1b4b2dbab3e4cc6196c3ed7
7
+ data.tar.gz: 18859da8ba47dbcb043b2439deaaea40ce41556edb606fcb4e3ee307b226ad70459e8ad48c583be88c53a99f004b1b2feef14d55e17d553767faf6ae4dda5573
@@ -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 => exception
109
+ rescue Exception
110
110
  report_kvs[:Status] = 500
111
111
  Oboe::API.log(nil, 'info', report_kvs)
112
112
  raise
@@ -8,8 +8,8 @@ module Oboe
8
8
  module Version
9
9
  MAJOR = 2
10
10
  MINOR = 7
11
- PATCH = 17
12
- BUILD = 1
11
+ PATCH = 18
12
+ BUILD = nil
13
13
 
14
14
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
15
15
  end
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.17.1
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-13 00:00:00.000000000 Z
12
+ date: 2015-05-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json