public
Rubygem
Description: This gem set the autotest (ZenTest) to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
Homepage: http://www.nomedojogo.com/
Clone URL: git://github.com/carlosbrando/autotest-notification.git
autotest-notification / config / requirements.rb
100644 16 lines (13 sloc) 0.348 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'fileutils'
include FileUtils
 
require 'rubygems'
%w[rake hoe newgem rubigen ZenTest].each do |req_gem|
  begin
    require req_gem
  rescue LoadError
    puts "This Rakefile requires the '#{req_gem}' RubyGem."
    puts "Installation: gem install #{req_gem} -y"
    exit
  end
end
 
$:.unshift(File.join(File.dirname(__FILE__), %w[.. lib]))