1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudsigma/models/mountpoint.rb
Paul Thornthwaite 814cb82f22 Replace alias with alias_method
Done with `rubocop --auto-correct --only Alias`
2014-05-26 16:22:07 +01:00

25 lines
554 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class CloudSigma
class MountPoint < Fog::Model
attribute :device, :type => 'string'
attribute :dev_channel, :type => 'string'
attribute :drive
attribute :boot_order, :type => 'integer'
def drive
drive = attributes[:drive]
drive.kind_of?(Hash) ? drive['uuid'] : drive
end
def drive=(new_drive)
attributes[:drive] = new_drive
end
alias_method :volume, :drive
end
end
end
end