Created
October 25, 2010 21:19
-
-
Save vhodges/645784 to your computer and use it in GitHub Desktop.
Allow for local additions to a Gemfile.
This file contains 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 characters
if File.exists?("Gemfile.local") | |
begin | |
contents = File.read("Gemfile.local") | |
eval(contents) | |
rescue Exception => e | |
puts "Exception = #{e.inspect}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment