1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog.rb

19 lines
353 B
Ruby
Raw Normal View History

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