-
Notifications
You must be signed in to change notification settings - Fork 21
/
Rakefile
34 lines (30 loc) · 1.03 KB
/
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
30
31
32
33
34
# -*- coding: utf-8 -*-
# -*- ruby -*-
require 'rubygems'
require './lib/daemon_spawn.rb'
require 'rake/testtask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "daemon-spawn"
gemspec.summary = "Daemon launching and management made dead simple"
gemspec.description = %Q[With daemon-spawn you can start, stop and restart processes that run
in the background. Processed are tracked by a simple PID file written
to disk.]
gemspec.rubyforge_project = "daemon-spawn"
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/alexvollmer/daemon-spawn"
gemspec.authors = ["Alex Vollmer", "Seamus Abshere", "Emmanual Gomez", "Seth Falcon", "Woody Peterson", "Tilo Prütz"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/*test.rb']
t.verbose = true
end
desc "Run tests"
task :default => :test
# vim: syntax=Ruby