Skip to content

Commit

Permalink
Updated Gem specification information and bumped version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Boeh committed May 28, 2009
1 parent 33d62e9 commit 49d934a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Manifest
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ require 'echoe'
require './lib/syslog_logger.rb'

Echoe.new('SyslogLogger', SyslogLogger::VERSION) do |p|
p.author = 'Eric Hodel; Chris Powell'
p.email = '[email protected]; [email protected]'
p.author = 'Eric Hodel; Chris Powell; Matthew Boeh'
p.email = '[email protected]; [email protected]; [email protected]'
p.description = "An improved Logger replacement that logs to syslog. It is almost drop-in with a few caveats."
p.url = "http://github.com/cpowell/sysloglogger"
p.url = "http://github.com/mboeh/sysloglogger"
p.ignore_pattern = ["tmp/*", "script/*"]
p.development_dependencies = []
end
Expand Down
2 changes: 1 addition & 1 deletion lib/syslog_logger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class SyslogLogger
##
# The version of SyslogLogger you are using.

VERSION = '1.4.1'
VERSION = '1.4.2'

# From 'man syslog.h':
# LOG_EMERG A panic condition was reported to all processes.
Expand Down
14 changes: 7 additions & 7 deletions sysloglogger.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

Gem::Specification.new do |s|
s.name = %q{SyslogLogger}
s.version = "1.4.1"
s.version = "1.4.2"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Eric Hodel; Chris Powell"]
s.date = %q{2008-11-12}
s.authors = ["Eric Hodel; Chris Powell; Matthew Boeh"]
s.date = %q{2009-05-28}
s.description = %q{An improved Logger replacement that logs to syslog. It is almost drop-in with a few caveats.}
s.email = %q{[email protected]; [email protected]}
s.extra_rdoc_files = ["lib/analyzer_tools/syslog_logger.rb", "lib/syslog_logger.rb", "README.rdoc"]
s.files = ["History.txt", "lib/analyzer_tools/syslog_logger.rb", "lib/syslog_logger.rb", "Manifest", "Rakefile", "README.rdoc", "sysloglogger.gemspec", "test/test_syslog_logger.rb", "SyslogLogger.gemspec"]
s.email = %q{[email protected]; [email protected]; [email protected]}
s.extra_rdoc_files = ["README.rdoc", "lib/analyzer_tools/syslog_logger.rb", "lib/syslog_logger.rb"]
s.files = ["Rakefile", "History.txt", "test/test_syslog_logger.rb", "README.rdoc", "lib/analyzer_tools/syslog_logger.rb", "lib/syslog_logger.rb", "sysloglogger.gemspec", "Manifest", "SyslogLogger.gemspec"]
s.has_rdoc = true
s.homepage = %q{http://github.com/cpowell/sysloglogger}
s.homepage = %q{http://github.com/mboeh/sysloglogger}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "SyslogLogger", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{sysloglogger}
Expand Down

0 comments on commit 49d934a

Please sign in to comment.