right_support 2.11.2 → 2.11.3
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/VERSION +1 -1
- data/lib/right_support/log/filter_logger.rb +2 -2
- data/right_support.gemspec +4 -4
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84b1fadd77413c3576fdd0fbbd879710b1112edc
|
|
4
|
+
data.tar.gz: f17cfd2668352ffd44369fb1d88c32999fc48946
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07c3f80725f1ed204534baae796e744decebc1b9938980798d4dc5a57758ad100dedabba94254961963bdafea1f411ff40b04dbe92731746f56d7f2e18e128d8
|
|
7
|
+
data.tar.gz: 0d150c874388b402fe0a2df8fb00bb13acd4902d1f3b48ac682e5036cbbaca06b4b3b9f218226b95b5994e7e22ab8478b79f4bf275679ffb2de1e83df72bb506
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.11.
|
|
1
|
+
2.11.3
|
|
@@ -57,8 +57,8 @@ module RightSupport::Log
|
|
|
57
57
|
super
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
def respond_to?(meth)
|
|
61
|
-
super(meth) || @actual_logger.respond_to?(meth)
|
|
60
|
+
def respond_to?(meth, *args)
|
|
61
|
+
super(meth, *args) || @actual_logger.respond_to?(meth, *args)
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
# Log a message, filtering the severity and/or message and dispatching
|
data/right_support.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: right_support 2.11.
|
|
5
|
+
# stub: right_support 2.11.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "right_support"
|
|
9
|
-
s.version = "2.11.
|
|
9
|
+
s.version = "2.11.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Tony Spataro", "Sergey Sergyenko", "Ryan Williamson", "Lee Kirchhoff", "Alexey Karpik", "Scott Messier"]
|
|
14
|
-
s.date = "2016-07-
|
|
14
|
+
s.date = "2016-07-20"
|
|
15
15
|
s.description = "A toolkit of useful, reusable foundation code created by RightScale."
|
|
16
16
|
s.email = "support@rightscale.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -154,7 +154,7 @@ Gem::Specification.new do |s|
|
|
|
154
154
|
]
|
|
155
155
|
s.homepage = "https://github.com/rightscale/right_support"
|
|
156
156
|
s.licenses = ["MIT"]
|
|
157
|
-
s.rubygems_version = "2.2.
|
|
157
|
+
s.rubygems_version = "2.2.2"
|
|
158
158
|
s.summary = "Reusable foundation code."
|
|
159
159
|
|
|
160
160
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: right_support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tony Spataro
|
|
@@ -13,7 +13,7 @@ authors:
|
|
|
13
13
|
autorequire:
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
|
-
date: 2016-07-
|
|
16
|
+
date: 2016-07-20 00:00:00.000000000 Z
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: rake
|
|
@@ -245,8 +245,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
245
245
|
version: '0'
|
|
246
246
|
requirements: []
|
|
247
247
|
rubyforge_project:
|
|
248
|
-
rubygems_version: 2.2.
|
|
248
|
+
rubygems_version: 2.2.2
|
|
249
249
|
signing_key:
|
|
250
250
|
specification_version: 4
|
|
251
251
|
summary: Reusable foundation code.
|
|
252
252
|
test_files: []
|
|
253
|
+
has_rdoc:
|