Class: R10K::Environment::SVN

Inherits:
Base
  • Object
show all
Includes:
Logging, Util::Setopts
Defined in:
lib/r10k/environment/svn.rb

Overview

This class implements an environment based on an SVN branch.

Since:

  • 1.3.0

Constant Summary

Constants included from Logging

Logging::LOG_LEVELS

Instance Attribute Summary collapse

Attributes inherited from Base

#basedir, #dirname, #name, #path, #puppetfile

Instance Method Summary collapse

Methods included from Logging

debug_formatter, default_formatter, default_outputter, #logger, #logger_name, parse_level

Methods inherited from Base

#accept, #modules

Constructor Details

#initialize(name, basedir, dirname, options = {}) ⇒ SVN

Initialize the given SVN environment.

Parameters:

  • name (String)

    The unique name describing this environment.

  • basedir (String)

    The base directory where this environment will be created.

  • dirname (String)

    The directory name for this environment.

  • options (Hash) (defaults to: {})

    An additional set of options for this environment.

Options Hash (options):

  • :remote (String)

    The URL to the remote SVN branch to check out

  • :username (String)

    The SVN username

  • :password (String)

    The SVN password

Since:

  • 1.3.0



43
44
45
46
47
48
49
# File 'lib/r10k/environment/svn.rb', line 43

def initialize(name, basedir, dirname, options = {})
  super

  setopts(options, {:remote => :self, :username => :self, :password => :self})

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

Instance Attribute Details

#passwordObject (readonly)

Since:

  • 1.3.0



29
30
31
# File 'lib/r10k/environment/svn.rb', line 29

def password
  @password
end

#remoteObject (readonly)

Since:

  • 1.3.0



14
15
16
# File 'lib/r10k/environment/svn.rb', line 14

def remote
  @remote
end

#usernameObject (readonly)

Since:

  • 1.3.0



24
25
26
# File 'lib/r10k/environment/svn.rb', line 24

def username
  @username
end

#working_dirObject (readonly)

Since:

  • 1.3.0



19
20
21
# File 'lib/r10k/environment/svn.rb', line 19

def working_dir
  @working_dir
end

Instance Method Details

#statusObject

Since:

  • 1.3.0



67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/r10k/environment/svn.rb', line 67

def status
  if !@path.exist?
    :absent
  elsif !@working_dir.is_svn?
    :mismatched
  elsif !(@remote == @working_dir.url)
    :mismatched
  elsif !@synced
    :outdated
  else
    :insync
  end
end

#syncvoid

This method returns an undefined value.

Perform an initial checkout of the SVN repository or update the repository.

If the environment is being created for the first time, it will automatically update all modules to ensure that the environment is complete.

Since:

  • 1.3.0



58
59
60
61
62
63
64
65
# File 'lib/r10k/environment/svn.rb', line 58

def sync
  if @working_dir.is_svn?
    @working_dir.update
  else
    @working_dir.checkout(@remote)
  end
  @synced = true
end