mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
4d739e6054
add ability to use Fog.credentials_path to use non '~/.fog' try to use available credentials automagically even outside bin
78 lines
1.4 KiB
Ruby
78 lines
1.4 KiB
Ruby
require 'rubygems'
|
|
require 'base64'
|
|
require 'cgi'
|
|
require 'excon'
|
|
require 'formatador'
|
|
require 'time'
|
|
require 'named-parameters'
|
|
|
|
__DIR__ = File.dirname(__FILE__)
|
|
|
|
$LOAD_PATH.unshift __DIR__ unless
|
|
$LOAD_PATH.include?(__DIR__) ||
|
|
$LOAD_PATH.include?(File.expand_path(__DIR__))
|
|
|
|
require 'fog/core'
|
|
|
|
module Fog
|
|
|
|
@mocking = false
|
|
|
|
unless const_defined?(:VERSION)
|
|
VERSION = '0.3.31'
|
|
end
|
|
|
|
module Mock
|
|
@delay = 1
|
|
def self.delay
|
|
@delay
|
|
end
|
|
|
|
def self.delay=(new_delay)
|
|
raise ArgumentError, "delay must be non-negative" unless new_delay >= 0
|
|
@delay = new_delay
|
|
end
|
|
|
|
def self.not_implemented
|
|
raise Fog::Errors::MockNotImplemented.new("Contributions welcome!")
|
|
end
|
|
|
|
end
|
|
|
|
def self.mock!
|
|
@mocking = true
|
|
end
|
|
|
|
def self.mocking?
|
|
!!@mocking
|
|
end
|
|
|
|
def self.wait_for(timeout=600, interval=1, &block)
|
|
duration = 0
|
|
start = Time.now
|
|
until yield || duration > timeout
|
|
sleep(interval)
|
|
duration = Time.now - start
|
|
end
|
|
if duration > timeout
|
|
false
|
|
else
|
|
{ :duration => duration }
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
require 'fog/aws'
|
|
require 'fog/bluebox'
|
|
require 'fog/brightbox'
|
|
require 'fog/go_grid'
|
|
require 'fog/google'
|
|
require 'fog/linode'
|
|
require 'fog/local'
|
|
require 'fog/new_servers'
|
|
require 'fog/rackspace'
|
|
require 'fog/slicehost'
|
|
require 'fog/terremark'
|
|
require 'fog/vcloud'
|
|
require 'fog/zerigo'
|