Sha256: 7cb83744db5cfe4902ae56ea0c939b3050a0ad45fcac4054ca14713e6114a805

Contents?: true

Size: 787 Bytes

Versions: 1

Compression:

Stored size: 787 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.new('god', '0.2.0') do |p|
  p.rubyforge_name = 'god'
  p.author = 'Tom Preston-Werner'
  p.email = 'tom@rubyisawesome.com'
  p.url = 'http://god.rubyforge.org/'
  p.summary = 'Like monit, only awesome'
  p.description = "God is an easy to configure, easy to extend monitoring framework written in Ruby."
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.extra_deps << ['daemons', '>=1.0.7']
  p.spec_extras = {:extensions => ['ext/god/extconf.rb']}
end

desc "Open an irb session preloaded with this library"
task :console do
  sh "irb -rubygems -r ./lib/god.rb"
end

desc "Upload site to Rubyforge"
task :site do
  sh "scp -r site/* mojombo@god.rubyforge.org:/var/www/gforge-projects/god"
end

# vim: syntax=Ruby

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
god-0.2.0 Rakefile