forked from crohr/syslogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyslogger.gemspec
32 lines (26 loc) · 1.14 KB
/
syslogger.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'syslogger'
Gem::Specification.new do |s|
s.name = "syslogger"
s.version = Syslogger::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.8'
s.required_rubygems_version = ">= 1.3"
s.authors = ["Cyril Rohr"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/crohr/syslogger"
s.summary = "Dead simple Ruby Syslog logger"
s.description = "Same as SyslogLogger, but without the ridiculous number of dependencies and with the possibility to specify the syslog facility"
s.add_development_dependency('rake', '~> 0.9')
s.add_development_dependency('rspec', '~> 2.0')
s.add_development_dependency('rdoc')
s.files = Dir.glob("{lib,spec}/**/*") + %w(Rakefile LICENSE README.rdoc)
s.test_files = [
"spec/spec_helper.rb",
"spec/syslogger_spec.rb"
]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = 'lib'
end