Skip to content

Commit

Permalink
Created an official gemspec file in order for Github to automate the …
Browse files Browse the repository at this point in the history
…gem creation.
  • Loading branch information
cpowell committed Nov 3, 2008
1 parent 0c1d6cd commit 962bbb0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions sysloglogger.gemspec
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

0 comments on commit 962bbb0

Please sign in to comment.