Class: CocoapodsRepoSq::Source
- Inherits:
-
Pod::Source
- Object
- Pod::Source
- CocoapodsRepoSq::Source
- Defined in:
- lib/cocoapods_repo_sq/source.rb
Overview
Class responsible of managing a collection of podspecs and pods hosted at a Square SDK repository. Files are accessed via HTTPS with Basic HTTP Authentication RFC7617
Instance Attribute Summary collapse
-
#repository ⇒ Repository
readonly
An object representing a Square SDK repository.
Instance Method Summary collapse
-
#initialize(repository) ⇒ Source
constructor
A new instance of Source.
Constructor Details
#initialize(repository) ⇒ Source
Returns a new instance of Source
37 38 39 40 |
# File 'lib/cocoapods_repo_sq/source.rb', line 37 def initialize(repository) @repository = repository super(repository.path) end |
Instance Attribute Details
#repository ⇒ Repository (readonly)
Returns an object representing a Square SDK repository
31 32 33 |
# File 'lib/cocoapods_repo_sq/source.rb', line 31 def repository @repository end |