public
Description: Generates monit configuration file(s) from thin and mongrel cluster configuration files.
Homepage: http://aktagon.com/projects/rails/monit_conf
Clone URL: git://github.com/christianhellsten/monit_conf.git
commit  1784a199babbbb1b3f979f969c35e2c4decd2da6
tree    d820676294b83c4ceea78f9c13940286b91e6f30
parent  b3c26feb879851933a5b45b79a08290e20ae31e2
monit_conf / Rakefile
100644 29 lines (24 sloc) 1.224 kb
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
%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/monit_conf'
 
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('monit_conf', MonitConf::VERSION) do |p|
  p.developer('Christian Hellsten', 'christian@aktagon.com')
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
  p.rubyforge_name = p.name # TODO this is default value
  # p.extra_deps = [
  # ['activesupport','>= 2.0.2'],
  # ]
  p.extra_dev_deps = [
    ['newgem', ">= #{::Newgem::VERSION}"]
  ]
  
  p.clean_globs |= %w[**/.DS_Store tmp *.log]
  path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
  p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
  p.rsync_args = '-av --delete --ignore-errors'
end
 
require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }
 
# TODO - want other tests/tasks run by default? Add them to the list
# task :default => [:spec, :features]