I'm trying the getting started guide on fog.io and this is working fine in ruby-1.9.3-p194, but not in ruby-1.8.7-p370, please see error below:
ecoologic@lerikaround:~/fog$ ruby fog.rb
./fog.rb:4: uninitialized constant Fog (NameError)
from /home/ecoologic/.rvm/rubies/ruby-1.8.7-p370/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /home/ecoologic/.rvm/rubies/ruby-1.8.7-p370/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from fog.rb:2
the gem list is the same for both:
*** LOCAL GEMS ***
builder (3.1.4)
bundler (1.2.1)
excon (0.16.10)
fog (1.8.0)
formatador (0.2.4)
mime-types (1.19)
multi_json (1.5.0)
net-scp (1.0.4)
net-ssh (2.6.2)
nokogiri (1.5.5)
rake (0.9.2.2)
ruby-hmac (0.4.0)
rubygems-bundler (1.1.0)
rvm (1.11.3.5)
and here is the file
require 'rubygems'
require 'fog'
storage = Fog::Storage.new({ # <= line 4
:local_root => '~/fog',
:provider => 'Local'
})
I'm on Ubuntu 12.10. Any ideas why and how to solve this? - Thanks