fog--fog/lib/fog.rb

19 lines
353 B
Ruby
Raw Normal View History

2010-12-16 19:24:52 +00:00
require File.join(File.dirname(__FILE__), 'fog', 'core')
2009-08-07 07:28:53 +00:00
module Fog
2010-05-04 00:25:59 +00:00
unless const_defined?(:VERSION)
2011-02-15 23:47:36 +00:00
VERSION = '0.5.3'
2010-04-30 06:30:49 +00:00
end
2010-04-21 03:23:24 +00:00
2009-08-07 07:28:53 +00:00
end
# FIXME: these should go away (force usage of Fog::[Compute, CDN, DNS, Storage] etc)
2011-01-08 01:07:09 +00:00
require 'fog/providers'
require 'fog/terremark'
2010-12-21 23:34:05 +00:00
2011-01-08 00:52:09 +00:00
require 'fog/compute'
2011-01-08 01:02:41 +00:00
require 'fog/cdn'
2011-01-08 00:52:09 +00:00
require 'fog/dns'
require 'fog/storage'