Sha256: 3102517f367b745e4dd1aeddcac6fdc4248aeda6c80131c27cc3396d20697360

Contents?: true

Size: 959 Bytes

Versions: 5

Compression:

Stored size: 959 Bytes

Contents

require 'rubygems'
require 'hoe'

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

5 entries across 5 versions & 4 rubygems

Version Path
jreynolds-god-0.7.13 Rakefile
mojombo-god-0.7.13 Rakefile
obitum-god-0.7.14.1 Rakefile
obitum-god-0.7.14 Rakefile
god-0.7.13 Rakefile