rf_logger 0.0.0 → 0.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8663cdc8e6bfe142b8fedc05be357102726f6b7b
4
- data.tar.gz: 43eed68ae68adb06a36a97a810afb75feb0e9400
3
+ metadata.gz: 8c1e586db46317c23c8457b60a8825bb8047b2e5
4
+ data.tar.gz: 8f88a4b572038809f6db57189c8f37d00107d6ff
5
5
  SHA512:
6
- metadata.gz: 5521b3c588c108ca71de061baecfc3b63cb08b0a8027e0b2b62b9ef78a7c8ddab8037f50a83d65593c5abfc91e909b619d5004f9d04592352b7106b6f7ddca18
7
- data.tar.gz: b7f8a7dbc6c4e63d54144b49d60297f22088371b5b0582e048d8694f6bfd1f6a0d200aec6c3f20dfb03cfb8840b02832144b078742a8e79871a648666dded9da
6
+ metadata.gz: 8abd4fa0827da81cc264ddcfcd717b06c894e95ddb403e9989c93e88f519e7b458a6691d465426848086884f02f5c542ea1f5c2db8a9d357012980cf4027a43f
7
+ data.tar.gz: ce8e7a3778a79b2a4948fed6ad1169a0a46a2218feefad405f150c3080760cecc66d37b331283f513175b245fe3c5bf1c6bfde81c6bbdcbe7884d025c7d8986a
@@ -25,7 +25,7 @@ module RfLogger
25
25
 
26
26
  def dispatch_error(log_info)
27
27
  notifiers[log_info.level.to_sym].each do |notifier|
28
- notifier.send_error_notification log_info
28
+ notifier.send_notification log_info
29
29
  end
30
30
  end
31
31
 
@@ -1,3 +1,3 @@
1
1
  module RfLogger
2
- VERSION = "0.0.0"
2
+ VERSION = "0.0.1"
3
3
  end
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.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(:send_error_notification).with(log)
63
+ n.should_receive(:send_notification).with(log)
64
64
  end
65
65
  described_class.dispatch_error(log)
66
66
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rf_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Miller