mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
76 lines
1.3 KiB
Ruby
76 lines
1.3 KiB
Ruby
require 'rubygems'
|
|
require 'base64'
|
|
require 'cgi'
|
|
require 'digest/md5'
|
|
require 'excon'
|
|
require 'formatador'
|
|
require 'hmac-sha1'
|
|
require 'hmac-sha2'
|
|
require 'json'
|
|
require 'mime/types'
|
|
require 'net/ssh'
|
|
require 'nokogiri'
|
|
require 'time'
|
|
|
|
__DIR__ = File.dirname(__FILE__)
|
|
|
|
$LOAD_PATH.unshift __DIR__ unless
|
|
$LOAD_PATH.include?(__DIR__) ||
|
|
$LOAD_PATH.include?(File.expand_path(__DIR__))
|
|
|
|
require 'fog/collection'
|
|
require 'fog/connection'
|
|
require 'fog/deprecation'
|
|
require 'fog/model'
|
|
require 'fog/parser'
|
|
require 'fog/ssh'
|
|
|
|
require 'fog/aws'
|
|
require 'fog/local'
|
|
require 'fog/rackspace'
|
|
require 'fog/slicehost'
|
|
require 'fog/terremark'
|
|
|
|
module Fog
|
|
|
|
unless const_defined?(:VERSION)
|
|
VERSION = '0.0.91'
|
|
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
|
|
end
|
|
|
|
class MockNotImplemented < StandardError; end
|
|
|
|
def self.mock!
|
|
@mocking = true
|
|
end
|
|
|
|
def self.mocking?
|
|
!!@mocking
|
|
end
|
|
|
|
def self.wait_for(timeout = 600, &block)
|
|
duration = 0
|
|
start = Time.now
|
|
until yield || duration > timeout
|
|
sleep(1)
|
|
duration = Time.now - start
|
|
end
|
|
if duration > timeout
|
|
false
|
|
else
|
|
{ :duration => duration }
|
|
end
|
|
end
|
|
|
|
end
|