forked from joewilliams/deckard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
29 lines (26 loc) · 813 Bytes
/
Rakefile
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
require 'rubygems'
require 'rake/gempackagetask'
require 'rake/rdoctask'
spec = Gem::Specification.new do |s|
s.name = "deckard"
s.version = "0.5.12"
s.author = "joe williams"
s.email = "[email protected]"
s.homepage = "http://github.com/joewilliams/deckard"
s.platform = Gem::Platform::RUBY
s.summary = "a monitoring system built on couchdb"
s.files = FileList["{bin,lib,config}/**/*"].to_a
s.require_path = "lib"
s.has_rdoc = true
s.extra_rdoc_files = ["README"]
%w{mixlib-config mixlib-log tmail json fog notifo}.each { |gem| s.add_dependency gem }
s.add_dependency("rest-client", "= 1.3.0")
s.bindir = "bin"
s.executables = %w( deckard )
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end
Rake::RDocTask.new do |rd|
rd.rdoc_files.include("lib/**/*.rb")
end