Module: Capistrano::DSL::Paths

Included in:
Capistrano::DSL
Defined in:
lib/capistrano/dsl/paths.rb

Instance Method Summary collapse

Instance Method Details

#asset_timestampObject



72
73
74
# File 'lib/capistrano/dsl/paths.rb', line 72

def asset_timestamp
  env.timestamp.strftime("%Y%m%d%H%M.%S")
end

#current_pathObject



14
15
16
# File 'lib/capistrano/dsl/paths.rb', line 14

def current_path
  deploy_path.join('current')
end

#deploy_config_pathObject



35
36
37
# File 'lib/capistrano/dsl/paths.rb', line 35

def deploy_config_path
  Pathname.new fetch(:deploy_config_path, 'config/deploy.rb')
end

#deploy_pathObject



10
11
12
# File 'lib/capistrano/dsl/paths.rb', line 10

def deploy_path
  Pathname.new(deploy_to)
end

#deploy_toObject



6
7
8
# File 'lib/capistrano/dsl/paths.rb', line 6

def deploy_to
  fetch(:deploy_to)
end

#join_paths(parent, paths) ⇒ Object



94
95
96
# File 'lib/capistrano/dsl/paths.rb', line 94

def join_paths(parent, paths)
  paths.map { |path| parent.join(path) }
end

#linked_dir_parents(parent) ⇒ Object



90
91
92
# File 'lib/capistrano/dsl/paths.rb', line 90

def linked_dir_parents(parent)
  map_dirnames(linked_dirs(parent))
end

#linked_dirs(parent) ⇒ Object



76
77
78
79
# File 'lib/capistrano/dsl/paths.rb', line 76

def linked_dirs(parent)
  paths = fetch(:linked_dirs)
  join_paths(parent, paths)
end

#linked_file_dirs(parent) ⇒ Object



86
87
88
# File 'lib/capistrano/dsl/paths.rb', line 86

def linked_file_dirs(parent)
  map_dirnames(linked_files(parent))
end

#linked_files(parent) ⇒ Object



81
82
83
84
# File 'lib/capistrano/dsl/paths.rb', line 81

def linked_files(parent)
  paths = fetch(:linked_files)
  join_paths(parent, paths)
end

#map_dirnames(paths) ⇒ Object



98
99
100
# File 'lib/capistrano/dsl/paths.rb', line 98

def map_dirnames(paths)
  paths.map { |path| path.dirname }
end

#nowObject



68
69
70
# File 'lib/capistrano/dsl/paths.rb', line 68

def now
  env.timestamp.strftime("%Y%m%d%H%M%S")
end

#release_pathObject



22
23
24
# File 'lib/capistrano/dsl/paths.rb', line 22

def release_path
  fetch(:release_path, current_path)
end

#releases_pathObject



18
19
20
# File 'lib/capistrano/dsl/paths.rb', line 18

def releases_path
  deploy_path.join('releases')
end

#repo_pathObject



56
57
58
# File 'lib/capistrano/dsl/paths.rb', line 56

def repo_path
  deploy_path.join('repo')
end

#repo_urlObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/capistrano/dsl/paths.rb', line 39

def repo_url
  require 'cgi'
  require 'uri'
  if fetch(:git_http_username) and fetch(:git_http_password)
    URI.parse(fetch(:repo_url)).tap do |repo_uri|
      repo_uri.user     = fetch(:git_http_username)
      repo_uri.password = CGI.escape(fetch(:git_http_password))
    end.to_s
  elsif fetch(:git_http_username)
    URI.parse(fetch(:repo_url)).tap do |repo_uri|
      repo_uri.user = fetch(:git_http_username)
    end.to_s
  else
    fetch(:repo_url)
  end
end

#revision_logObject



64
65
66
# File 'lib/capistrano/dsl/paths.rb', line 64

def revision_log
  deploy_path.join('revisions.log')
end

#set_release_path(timestamp = now) ⇒ Object



26
27
28
29
# File 'lib/capistrano/dsl/paths.rb', line 26

def set_release_path(timestamp=now)
  set(:release_timestamp, timestamp)
  set(:release_path, releases_path.join(timestamp))
end

#shared_pathObject



60
61
62
# File 'lib/capistrano/dsl/paths.rb', line 60

def shared_path
  deploy_path.join('shared')
end

#stage_config_pathObject



31
32
33
# File 'lib/capistrano/dsl/paths.rb', line 31

def stage_config_path
  Pathname.new fetch(:stage_config_path, 'config/deploy')
end