class CocoapodsRepoSq::Source

Class responsible of managing a collection of podspecs and pods hosted at a Square SDK repository. Files are accessed via HTTPS with {tools.ietf.org/html/rfc7617 Basic HTTP Authentication RFC7617}

Attributes

repository[R]

@return [Repository]

an object representing a Square SDK repository

Public Class Methods

new(repository) click to toggle source

@param repository [Repository]

an object representing a Square SDK repository where this source will
get podspecs from.
Calls superclass method
# File lib/cocoapods_repo_sq/source.rb, line 37
def initialize(repository)
  @repository = repository
  super(repository.path)
end