class GitCompound::Repository::RepositoryRemote

Remote git repository implementation

Public Instance Methods

file_contents(file, ref) click to toggle source
# File lib/git_compound/repository/repository_remote.rb, line 6
def file_contents(file, ref)
  remote_file = RemoteFile.new(@source, ref, file)
  remote_file.contents
end