Created
May 15, 2012 20:11
-
-
Save jhirn/2704739 to your computer and use it in GitHub Desktop.
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
# load libraries | |
def load_gem(gem_name, gem_require=nil, &block) | |
gem_require = gem_require || gem_name | |
begin | |
if unbundled_require(gem_name, gem_require) | |
yield if block_given? | |
end | |
rescue Exception => e | |
warn "Couldn't load #{gem_name}: #{e}" | |
end | |
end | |
def unbundled_require(gem_name, gem_require=nil) | |
gem_require = gem_require || gem_name | |
loaded = false | |
if defined?(::Bundler) | |
Gem.path.each do |gems_path| | |
gem_path = Dir.glob("#{gems_path}/gems/#{gem_name}*").last | |
unless gem_path.nil? | |
$LOAD_PATH << "#{gem_path}/lib" | |
require gem_require | |
loaded = true | |
end | |
end | |
else | |
require gem_require | |
loaded = true | |
end | |
raise(LoadError, "Couldn't find #{gem_name}") unless loaded | |
loaded | |
end | |
require 'rubygems' unless defined? Gem | |
load_gem 'ruby-nuggets', 'nuggets' | |
load_gem 'added_methods' | |
load_gem 'slop' | |
load_gem 'coderay' | |
load_gem 'method_source' | |
load_gem 'pry' | |
load_gem 'brice', 'brice/init' | |
puts "Successfully loaded irbrc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment