syslog-sd 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gemtest ADDED
File without changes
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 1.3.2, 2011-12-02:
2
+ * support for rubygems-test.
3
+ * rescue from more network errors.
4
+
1
5
  1.3.1, 2011-11-03:
2
6
  ++ Merge with `gelf` gem, synchronize versions.
3
7
  + allow to rescue from network errors.
data/README.rdoc CHANGED
@@ -7,7 +7,7 @@ API documentation: http://rubydoc.info/github/Graylog2/syslog-sd-rb/master/frame
7
7
 
8
8
  Based on GELF gem (https://github.com/graylog2/gelf-rb).
9
9
 
10
- Works with Ruby 1.8.7 and 1.9.2. 1.8.6 is not supported.
10
+ Works with Ruby 1.8.7 and 1.9.x. 1.8.6 is not supported.
11
11
 
12
12
  == Note on Patches/Pull Requests
13
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.1
1
+ 1.3.2
@@ -111,7 +111,7 @@ module SyslogSD
111
111
  private
112
112
  def notify_with_level(message_level, *args)
113
113
  notify_with_level!(message_level, *args)
114
- rescue SocketError
114
+ rescue SocketError, SystemCallError
115
115
  raise unless self.rescue_network_errors
116
116
  rescue Exception => exception
117
117
  notify_with_level!(SyslogSD::UNKNOWN, exception)
data/syslog-sd.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "syslog-sd"
8
- s.version = "1.3.1"
8
+ s.version = "1.3.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Alexey Palazhchenko", "Lennart Koopmann"]
12
- s.date = "2011-11-03"
12
+ s.date = "2011-12-02"
13
13
  s.description = "Super-Duper library to send syslog messages over UDP to logging server such as Graylog2. Supports Structured Data elements as defined by RFC 5424."
14
14
  s.email = "alexey.palazhchenko@gmail.com"
15
15
  s.extra_rdoc_files = [
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
17
17
  "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
+ ".gemtest",
20
21
  ".travis.yml",
21
22
  "CHANGELOG",
22
23
  "LICENSE",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: syslog-sd
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 1
10
- version: 1.3.1
9
+ - 2
10
+ version: 1.3.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alexey Palazhchenko
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-11-03 00:00:00 Z
19
+ date: 2011-12-02 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: shoulda
@@ -70,6 +70,7 @@ extra_rdoc_files:
70
70
  - LICENSE
71
71
  - README.rdoc
72
72
  files:
73
+ - .gemtest
73
74
  - .travis.yml
74
75
  - CHANGELOG
75
76
  - LICENSE