lib/driver.rb in cloud-backup-0.0.1 vs lib/driver.rb in cloud-backup-0.0.2

- old
+ new

@@ -27,33 +27,9 @@ # def initiate raise Error.must_define :initiate end - # Driver Identificator - # - # Specifies the *identificator* where the resources will be - # installed. - # - # For example: If you are storing data into Google-Storage, or - # S3 this could be a bucket-name. - # - # Note: each driver may specify different types of identificators - # or implement it's own methods depending on the storage-engine - # that is being used. - # - def identificator - raise Error.must_define :identificator - end - - # Identificator changer - # - # Allows the client to change the identificator - # - def identificator name - raise Error.must_define :identificator= - end - # File aggregator # # Adds a file to be backed up by the driver, path might be an # *absolute* or *relative* depending on how you are running your # script.