oboe 2.7.17.1 → 2.7.18

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: 529cd6cc37ff59074153804ee8b1bf7a127adf1a
4
- data.tar.gz: 59762f6323ed39ff1ae52085eea67711f100bff4
3
+ metadata.gz: 789864c5d38ed290c7748d7822c017848f70c273
4
+ data.tar.gz: def174052b0dad84cda61cc1e2013e0f763733ea
5
5
  SHA512:
6
- metadata.gz: c37e42ca48f51b286f7466b59da01c68ca349e5c735a13be276f3327ccaba6f09c7149ea84e37d196d42be48513ac9af33bb04c192249d70846f57ede6bd9a86
7
- data.tar.gz: aee307bcbf113c6b223b6c575b410b610448fc66bbaed9a9f6467f6e74d1f8873b990125edf8b58ea25c70c05609654fd9ca71249eabf9118cdbc75bd8f15d06
6
+ metadata.gz: 153a791c92475c1e38c816703cfc54d3b25d1828973902c4eca5a2880b1237a9244d1f24d23b4f0fd129536aef34af800128a8615a37eebe3026b9ba65983e77
7
+ data.tar.gz: 572b4b02b75d53763165800a70ec2d3ac7e7c536c069803a50f28c74907358f2b1fd64b1f6047433c884ca4a0cade1e1691d2df8926bebf268da4e7f6d0e0d04
@@ -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: ruby
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