1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/projects/mongrel_status/Rakefile
zedshaw 0fb0a0f097 Included the little mongrel_status plugin and the new mongrel_config plugin.
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@91 19e92222-5c0b-0410-8929-a290d50e31e9
2006-03-10 06:06:06 +00:00

29 lines
732 B
Ruby

require 'rake'
require 'rake/testtask'
require 'rake/clean'
require 'rake/gempackagetask'
require 'rake/rdoctask'
require 'tools/rakehelp'
require 'fileutils'
include FileUtils
setup_tests
setup_clean ["pkg", "lib/*.bundle", "*.gem", ".config"]
setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
desc "Does a full compile, test run"
task :default => [:test, :package]
version="0.1"
summary = "A sample plugin that reports the status of mongrel."
test_file = "test/test_empty.rb"
author="Zed A. Shaw"
name="mongrel_status"
scripts=[]
setup_gem(name, version, author, summary, scripts, test_file) do |spec|
spec.add_dependency('mongrel', '>= 0.3.9')
spec.add_dependency('gem_plugin', '>= 0.2')
end