rf_logger 0.0.0 → 0.0.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c1e586db46317c23c8457b60a8825bb8047b2e5
|
4
|
+
data.tar.gz: 8f88a4b572038809f6db57189c8f37d00107d6ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8abd4fa0827da81cc264ddcfcd717b06c894e95ddb403e9989c93e88f519e7b458a6691d465426848086884f02f5c542ea1f5c2db8a9d357012980cf4027a43f
|
7
|
+
data.tar.gz: ce8e7a3778a79b2a4948fed6ad1169a0a46a2218feefad405f150c3080760cecc66d37b331283f513175b245fe3c5bf1c6bfde81c6bbdcbe7884d025c7d8986a
|
data/lib/rf_logger/version.rb
CHANGED
data/rf_logger.gemspec
CHANGED
@@ -5,7 +5,7 @@ require 'rf_logger/version'
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = 'rf_logger'
|
8
|
-
s.version = '0.0.
|
8
|
+
s.version = '0.0.1'
|
9
9
|
s.date = '2014-02-20'
|
10
10
|
s.summary = "A logger that adheres to Renewable Funding logging conventions"
|
11
11
|
s.description = "A logger that allows specification of severity, applicable entity/records, metadata, and optional notifications"
|
@@ -60,7 +60,7 @@ describe RfLogger::ErrorNotification do
|
|
60
60
|
it 'calls error_notification on all configured notifiers' do
|
61
61
|
log = double(:log, :level => :warn)
|
62
62
|
described_class.notifiers[:warn].each do |n|
|
63
|
-
n.should_receive(:
|
63
|
+
n.should_receive(:send_notification).with(log)
|
64
64
|
end
|
65
65
|
described_class.dispatch_error(log)
|
66
66
|
end
|