mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-22 00:19:19 +01:00
16 lines
340 B
Ruby
16 lines
340 B
Ruby
![]() |
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]))
|