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.
Created an official gemspec file in order for Github to automate the …
…gem creation.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 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,22 @@ | ||
Gem::Specification.new do |s| | ||
s.name = "SyslogLogger" | ||
s.version = "1.4.1" | ||
s.date = "2008-11-01" | ||
s.summary = "Logger replacement that logs to syslog" | ||
s.email = "[email protected]" | ||
s.homepage = "http://github.com/cpowell/sysloglogger" | ||
s.description = "SyslogLogger is a Logger replacement that logs to syslog. It is almost drop-in with a few caveats. You can add SyslogLogger to your Rails production environment to aggregate logs between multiple machines." | ||
s.has_rdoc = true | ||
s.authors = ["Eric Hodel", "Chris Powell"] | ||
s.files = ["History.txt", | ||
"Manifest.txt", | ||
"README.txt", | ||
"README.rdoc", | ||
"Rakefile", | ||
"sysloglogger.gemspec", | ||
"lib/syslog_logger.rb", | ||
"lib/analyzer_tools/syslog_logger.rb"] | ||
s.test_files = ["test/test_syslog_logger.rb"] | ||
s.rdoc_options = ["--main", "README.txt"] | ||
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"] | ||
end |