forked from bdurand/lumberjack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlumberjack.gemspec
21 lines (17 loc) · 1.04 KB
/
lumberjack.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = 'lumberjack'
s.version = File.read(File.expand_path("../VERSION", __FILE__)).strip
s.summary = "A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger."
s.description = "A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger. Provides support for automatically rolling log files even with multiple processes writing the same log file."
s.license = 'MIT'
s.authors = ['Brian Durand']
s.email = ['[email protected]']
s.homepage = "http://github.com/bdurand/lumberjack"
s.files = ['README.rdoc', 'VERSION', 'Rakefile', 'MIT_LICENSE'].concat(Dir.glob('lib/**/*')).concat(Dir.glob('spec/**/*'))
s.require_path = 'lib'
s.has_rdoc = true
s.rdoc_options = ["--charset=UTF-8", "--main", "README.rdoc"]
s.extra_rdoc_files = ["README.rdoc"]
s.add_development_dependency("rspec", ["~> 3.0"])
s.add_development_dependency("timecop", ["~> 0.8"])
end