Class: Capistrano::NetStorage::S3::Broker::Base Abstract
- Inherits:
-
Object
- Object
- Capistrano::NetStorage::S3::Broker::Base
- Defined in:
- lib/capistrano/net_storage/s3/broker/base.rb
Overview
This class is abstract.
Direct Known Subclasses
Instance Method Summary collapse
- #check ⇒ Object abstract
- #download ⇒ Object abstract
- #find_uploaded ⇒ Object abstract
- #upload ⇒ Object abstract
Instance Method Details
#check ⇒ Object
This method is abstract.
8 9 10 |
# File 'lib/capistrano/net_storage/s3/broker/base.rb', line 8 def check raise NotImplementedError end |
#download ⇒ Object
This method is abstract.
23 24 25 |
# File 'lib/capistrano/net_storage/s3/broker/base.rb', line 23 def download raise NotImplementedError end |
#find_uploaded ⇒ Object
This method is abstract.
13 14 15 |
# File 'lib/capistrano/net_storage/s3/broker/base.rb', line 13 def find_uploaded raise NotImplementedError end |
#upload ⇒ Object
This method is abstract.
18 19 20 |
# File 'lib/capistrano/net_storage/s3/broker/base.rb', line 18 def upload raise NotImplementedError end |