mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2a9224cfa7
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
708 B
Ruby
43 lines
708 B
Ruby
require 'fog/model'
|
|
|
|
module Fog
|
|
module Bluebox
|
|
|
|
class Flavor < Fog::Model
|
|
|
|
identity :id
|
|
|
|
attribute :name
|
|
attribute :cost
|
|
attribute :description
|
|
|
|
def bits
|
|
# 64
|
|
raise StandardError.new("Figure me out!?!")
|
|
end
|
|
|
|
def cores
|
|
# # 2 quad-cores >= 2Ghz = 8 cores
|
|
# 8 * case ram
|
|
# when 256
|
|
# 1/64.0
|
|
# when 512
|
|
# 1/32.0
|
|
# when 1024
|
|
# 1/16.0
|
|
# when 2048
|
|
# 1/8.0
|
|
# when 4096
|
|
# 1/4.0
|
|
# when 8192
|
|
# 1/2.0
|
|
# when 15872
|
|
# 1
|
|
# end
|
|
raise StandardError.new("Figure me out!?!")
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|