class Capistrano::NetStorage::S3::Broker::Base

@abstract

Public Instance Methods

check() click to toggle source

@abstract

# File lib/capistrano/net_storage/s3/broker/base.rb, line 8
def check
  raise NotImplementedError
end
download() click to toggle source

@abstract

# File lib/capistrano/net_storage/s3/broker/base.rb, line 23
def download
  raise NotImplementedError
end
find_uploaded() click to toggle source

@abstract

# File lib/capistrano/net_storage/s3/broker/base.rb, line 13
def find_uploaded
  raise NotImplementedError
end
upload() click to toggle source

@abstract

# File lib/capistrano/net_storage/s3/broker/base.rb, line 18
def upload
  raise NotImplementedError
end

Private Instance Methods

config() click to toggle source
# File lib/capistrano/net_storage/s3/broker/base.rb, line 29
def config
  Capistrano::NetStorage::S3.config
end
net_storage() click to toggle source
# File lib/capistrano/net_storage/s3/broker/base.rb, line 33
def net_storage
  Capistrano::NetStorage.config
end