Created
October 11, 2009 16:06
Revisions
-
sr created this gist
Oct 11, 2009 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ def disable_rubygems; nil; end def source(s); $src = s unless s[/gemcutter/] end def gem(n, v) if Hash === v $stderr.puts "ignoring git gem #{n}" return end puts "#{n} -v#{v}#{$src ? " -s#{$src}": ""}" end load ARGV[0] || "Gemfile"