public
Description: Extra tasks for vlad
Clone URL: git://github.com/technicalpickles/vlad-extras.git
vlad-extras / config / requirements.rb
100644 17 lines (14 sloc) 0.367 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'fileutils'
include FileUtils
 
require 'rubygems'
%w[rake hoe newgem rubigen vlad].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]))
 
require 'vlad/extras'