Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rishiip/4496f37c997471184ec7c257a5d2c5be to your computer and use it in GitHub Desktop.
Save rishiip/4496f37c997471184ec7c257a5d2c5be to your computer and use it in GitHub Desktop.
workaround to load irb specific gem (loaded in .irbrc) in bundler environment, like rails3 console
# Add all gems in the global gemset to the $LOAD_PATH so they can be used in rails3 console with bundler
if defined?(::Bundler)
$LOAD_PATH.concat Dir.glob("#{ENV['rvm_path']}/gems/#{ENV['rvm_ruby_string']}@global/gems/*/lib")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment