module Capistrano::NFS::DSL
Public Instance Methods
linked_nfs_dir_parents(parent)
click to toggle source
# File lib/capistrano/nfs/dsl.rb, line 25 def linked_nfs_dir_parents(parent) map_dirnames(linked_nfs_dirs(parent)) end
linked_nfs_dirs(parent)
click to toggle source
# File lib/capistrano/nfs/dsl.rb, line 11 def linked_nfs_dirs(parent) paths = fetch(:linked_nfs_dirs) join_paths(parent, paths) end
linked_nfs_file_dirs(parent)
click to toggle source
# File lib/capistrano/nfs/dsl.rb, line 21 def linked_nfs_file_dirs(parent) map_dirnames(linked_nfs_files(parent)) end
linked_nfs_files(parent)
click to toggle source
# File lib/capistrano/nfs/dsl.rb, line 16 def linked_nfs_files(parent) paths = fetch(:linked_nfs_files) join_paths(parent, paths) end
nfs_path()
click to toggle source
# File lib/capistrano/nfs/dsl.rb, line 7 def nfs_path Pathname.new fetch(:nfs_path, "#{shared_path}") end