public
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/francois/piston.git
Search Repo:
piston / config / requirements.rb
100644 18 lines (15 sloc) 0.404 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "fileutils"
include FileUtils
 
require "rubygems"
%w[rake hoe newgem rubigen mocha activesupport].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 "piston"
require "piston/commands"