From 73b74ba96442d16bd18219b1868810f356edd1cc Mon Sep 17 00:00:00 2001 From: Sean Handley Date: Fri, 22 Jun 2012 10:33:16 +0100 Subject: [PATCH] This shouldn't be here. --- lib/fog/serverlove/models/compute/drive.rb | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 lib/fog/serverlove/models/compute/drive.rb diff --git a/lib/fog/serverlove/models/compute/drive.rb b/lib/fog/serverlove/models/compute/drive.rb deleted file mode 100644 index b9fab6574..000000000 --- a/lib/fog/serverlove/models/compute/drive.rb +++ /dev/null @@ -1,34 +0,0 @@ -require 'fog/core/model' - -module Fog - module Compute - class Serverlove - - class Drive < Fog::Model - - identity :drive - - attribute :name - attribute :user - attribute :size - attribute :claimed - attribute :status - attribute :encryption_cipher, :aliases => 'encryption:cipher' - - def save - - end - - def destroy - requires :identity - connection.destroy_drive(identity) - self - end - - def self.create(args) - - end - end - end - end -end