Method: R10K::Module::SVN#initialize

Defined in:
lib/r10k/module/svn.rb

#initialize(name, dirname, opts, environment = nil) ⇒ SVN

Returns a new instance of SVN.



47
48
49
50
51
52
53
# File 'lib/r10k/module/svn.rb', line 47

def initialize(name, dirname, opts, environment=nil)
  super

  setopts(opts, INITIALIZE_OPTS)

  @working_dir = R10K::SVN::WorkingDir.new(@path, :username => @username, :password => @password)
end