-
Notifications
You must be signed in to change notification settings - Fork 22
/
cabin.gemspec
34 lines (27 loc) · 937 Bytes
/
cabin.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
33
Gem::Specification.new do |spec|
paths = %w{lib examples test LICENSE CHANGELIST}
spec.name = "cabin"
spec.version = "0.8.1"
spec.summary = "Experiments in structured and contextual logging"
spec.description = "This is an experiment to try and make logging more " \
"flexible and more consumable. Plain text logs are bullshit, let's " \
"emit structured and contextual logs. Metrics, too!"
spec.license = "Apache License (2.0)"
spec.authors = ["Jordan Sissel"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/jordansissel/ruby-cabin"
#spec.add_dependency("json")
spec.require_paths << "lib"
spec.bindir = "bin"
spec.executables << "rubygems-cabin-test"
files = []
paths.each do |path|
if File.file?(path)
files << path
else
files += Dir["#{path}/**/*"]
end
end
spec.files = files
spec.add_development_dependency 'rake', '~> 10.4.2'
end