Sha256: 5f182cc0b2e6e73222afa060ad09d1e508da08dc23eee3791efd058cb6cc7e61

Contents?: true

Size: 959 Bytes

Versions: 6

Compression:

Stored size: 959 Bytes

Contents

require 'rubygems'
require 'hoe'

Hoe.new('god', '0.7.11') 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.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

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

desc "Run rcov"
task :coverage do
  `rm -fr coverage`
  `rcov test/test_*.rb`
  `open coverage/index.html`
end

Version data entries

6 entries across 6 versions & 6 rubygems

Version Path
eric-god-0.7.11 Rakefile
gordoncww-god-0.7.11.1 Rakefile
mathieuravaux-god-0.7.11 Rakefile
mojombo-god-0.7.11 Rakefile
pjhyett-god-0.7.12 Rakefile
god-0.7.11 Rakefile