class Silo::Remote::Base

This class represents a standard Git remote attached to the Git repository backing the Silo repository

Attributes

name[R]

@return [String] The name of this remote

url[R]

@return [String] The URL of this remote

Public Class Methods

new(repo, name) click to toggle source

Creates a new remote with the specified name

@param [Repository] repo The Silo repository this remote belongs to @param [String] name The name of the remote

# File lib/silo/remote/base.rb, line 24
def initialize(repo, name)
  @name = name
  @repo = repo
end