Created
          January 25, 2011 13:33 
        
      - 
      
 - 
        
Save skojin/794915 to your computer and use it in GitHub Desktop.  
    workaround to load irb specific gem (loaded in .irbrc) in bundler environment, like rails3 console
  
        
  
    
      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 characters
    
  
  
    
  | # 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 | 
@mschulkind Thanks for posting that snippet. I've shortened it a bit, to make it a bit easier to grok:
# Add all gems in the global gemset to the $LOAD_PATH so they can be used even
# in places like 'rails console'.
if defined?(::Bundler)
  global_gemset = ENV['GEM_PATH'].split(':').grep(/ruby.*@global/).first
  $LOAD_PATH.concat(Dir.glob("#{global_gemset}/gems/*/lib")) if global_gemset
end
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
@skojin I tried your solution but it didn't work for me.
ENV['rvm_ruby_string']is empty.@mschulkind's alternative worked fine for me.