class MusicStory::Repository::BatchSFTP::SessionWrapper

Attributes

sftp[R]

Public Class Methods

new(repository, sftp_session) click to toggle source
# File lib/music_story/repository/batch_sftp.rb, line 165
def initialize(repository, sftp_session)
  @repository = repository
  @sftp = sftp_session
end

Public Instance Methods

method_missing(name, *args, &block) click to toggle source
# File lib/music_story/repository/batch_sftp.rb, line 170
def method_missing(name, *args, &block)
  @repository.send(name, *([self] + args), &block)
end
respond_to?(name) click to toggle source
# File lib/music_story/repository/batch_sftp.rb, line 174
def respond_to?(name)
  @repository.respond_to?(name)
end