class Pod::SvnSource

Subclass of Pod::Source to provide support for SVN Specs repositories

Attributes

url[RW]

@return [String] The remote URL of the repository

Public Class Methods

new(repo, url) click to toggle source

@param [String] repo The name of the repository (aka. directory name)

@param [String] url see {#url}

Calls superclass method
# File lib/svn_source.rb, line 13
def initialize(repo, url)
  super(repo)
  @url = url
end