mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
![ggoodale](/assets/img/avatar_default.png)
Added basic spec framework; changed class names to match the template fog seems to prefer Servers tests pass; create and delete implemented. Added an example script Properly handle a 409 response from the API Fixed BBG code to work with the new api endpoint changes; tweaks to the (currently nonexistent) reboot api call Implement the reboot command for blocks
43 lines
769 B
Ruby
43 lines
769 B
Ruby
module Bluebox
|
|
class << self
|
|
|
|
if Fog.credentials[:bluebox_api_key]
|
|
|
|
def initialized?
|
|
true
|
|
end
|
|
|
|
def [](service)
|
|
@@connections ||= Hash.new do |hash, key|
|
|
credentials = Fog.credentials.reject do |k,v|
|
|
![:bluebox_api_key, :bluebox_host, :bluebox_port, :bluebox_scheme].include?(k)
|
|
end
|
|
hash[key] = case key
|
|
when :blocks
|
|
Fog::Bluebox.new(credentials)
|
|
end
|
|
end
|
|
@@connections[service]
|
|
end
|
|
|
|
def flavors
|
|
self[:blocks].flavors
|
|
end
|
|
|
|
def images
|
|
self[:blocks].images
|
|
end
|
|
|
|
def servers
|
|
self[:blocks].servers
|
|
end
|
|
|
|
else
|
|
|
|
def initialized?
|
|
false
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|