I'm new to ruby and I have a problem loading gems. I've read every topic about this on SO but I couldn't figure out how to make it work :/ I'm on a fresh install of Ruby 1.9.3 and RubyGems 1.8.11
RubyGems Environment: - RUBYGEMS VERSION: 1.8.11 - RUBY VERSION: 1.9.3 (2011-10-30 patchlevel 0) [i386-mingw32] - INSTALLATION DIRECTORY: D:/dev/Ruby/lib/ruby/gems/1.9.1 - RUBY EXECUTABLE: D:/dev/Ruby/bin/ruby.exe - EXECUTABLE DIRECTORY: D:/dev/Ruby/bin - RUBYGEMS PLATFORMS: - ruby - x86-mingw32 - GEM PATHS: - D:/dev/Ruby/lib/ruby/gems/1.9.1 - D:/aoi/.gem/ruby/1.9.1 - GEM CONFIGURATION: - :update_sources => true - :verbose => true - :benchmark => false - :backtrace => false - :bulk_threshold => 1000 - REMOTE SOURCES: - http://rubygems.org/ I've installed the gem twice, once from command line
gem install soap4r And second time i've tried to use RubyMine installer, but the result where the same, when I try to
require 'rubygems' resuire 'soap' The output is the same :
LoadError: cannot load such file -- soap from D:/dev/Ruby/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' from D:/dev/Ruby/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' from (irb):1 from D:/dev/Ruby/bin/irb:12:in `<main>' Thank you for your help.