module Capistrano::Typo3::Cms::Base

Constants

VERSION

Public Class Methods

basedir_append(path) click to toggle source
# File lib/capistrano/typo3/cms/base.rb, line 29
def self.basedir_append(path)
  if fetch(:typo3_cms_basedir) then
    File.join( path, fetch(:typo3_cms_basedir))
  else
    path
  end
end
basedir_prepend(path) click to toggle source
# File lib/capistrano/typo3/cms/base.rb, line 21
def self.basedir_prepend(path)
  if fetch(:typo3_cms_basedir) then
    File.join( fetch(:typo3_cms_basedir), path)
  else
    path
  end
end