public
Description: Next generation Growl support for autotest.
Homepage: http://www.bitcetera.com/products/autotest-growl
Clone URL: git://github.com/svoop/autotest-growl.git
Click here to lend your support to: autotest-growl and make a donation at www.pledgie.com !
autotest-growl / Rakefile
100644 27 lines (22 sloc) 1.051 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
require 'rubygems'
gem 'hoe', '>= 2.1.0'
require 'hoe'
require 'fileutils'
require './lib/autotest-growl'
 
Hoe.plugin :newgem
# Hoe.plugin :website
# Hoe.plugin :cucumberfeatures
 
$hoe = Hoe.spec 'autotest-growl' do
  self.developer 'Sven Schwyn', 'ruby@bitcetera.com'
  self.summary = %q{Next generation Growl notification support for ZenTest's autotest.}
  self.description = %q{This gem aims to improve support for Growl notification by ZenTest's autotest. It comes with a nice colored Ruby icon set and - for now - supports Cucumber by means of a workaround.}
  self.url = %q{http://www.bitcetera.com/products/autotest-growl}
  self.post_install_message = "\n\e[1;32m" + File.read('PostInstall.txt') + "\e[0m\n"
  self.rubyforge_name = self.name
  self.extra_deps = [
                                ['ZenTest','>= 4.1.3'],
                              ]
end
 
require 'newgem/tasks'
Dir['tasks/**/*.rake'].each { |t| load t }
 
task :default => [:spec]