forked from ngmoco/syslog_logger
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Gem specification information and bumped version.
- Loading branch information
Matthew Boeh
committed
May 28, 2009
1 parent
33d62e9
commit 49d934a
Showing
4 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Manifest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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} | ||
|