drnic / iphoneruby

RENAMED: see rbiphonetest project

This URL has Read+Write access

drnic (author)
Wed Jul 02 18:57:39 -0700 2008
commit  668aa1e3309f08ba829c890eaca82f13f0d37b22
tree    565a3b27d1d8f15771ba2afa8fefd9915a7093a2
parent  03b88272ec9745c7c57bc947e6673ad50390e05b
iphoneruby / config / requirements.rb
100644 16 lines (13 sloc) 0.34 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].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]))