From 962bbb01a2a26e20d3feb8771744e05cfb9f4a8e Mon Sep 17 00:00:00 2001 From: Chris Powell Date: Sun, 2 Nov 2008 17:03:21 -0800 Subject: [PATCH] Created an official gemspec file in order for Github to automate the gem creation. --- sysloglogger.gemspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sysloglogger.gemspec diff --git a/sysloglogger.gemspec b/sysloglogger.gemspec new file mode 100644 index 0000000..6baace0 --- /dev/null +++ b/sysloglogger.gemspec @@ -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 = "cpowell@prylis.com" + 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