Sha256: 5b0df6470afe37702336a9f23538f57ff6dbbeac6043bf7590deb3379e3fbff2
Contents?: true
Size: 886 Bytes
Versions: 1
Compression:
Stored size: 886 Bytes
Contents
module Ec2spec class HostResult MONTH_OF_DAYS = 31 NA_VALUE = 'N/A' attr_accessor :host, :backend, :instance_id, :memory, :cpu attr_reader :instance_type attr_writer :price_per_unit def initialize(host, days = nil) @host = host @backend = nil @days = days || MONTH_OF_DAYS end def na_values @instance_type = NA_VALUE @instance_id = NA_VALUE @memory = NA_VALUE @cpu = NA_VALUE @price_per_unit = NA_VALUE end def instance_type=(value) @instance_type = value return if value == NA_VALUE @offer_file = Ec2spec::OfferFile.new(value) price_per_unit end def price_per_unit @price_per_unit ||= @offer_file.price_per_unit end def price_per_month return NA_VALUE if @price_per_unit == NA_VALUE @price_per_unit * 24 * @days end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ec2spec-0.1.1 | lib/ec2spec/host_result.rb |