Sha256: 741be65259bb019aad093ff9e9f857975a376b9c093b1a24351b4b6597e15839
Contents?: true
Size: 284 Bytes
Versions: 36
Compression:
Stored size: 284 Bytes
Contents
require 'pathname' module AppDirectory extend self def config @config ||= Pathname.new('config') end def root @root ||= Pathname.new('') end def deploy config.join('deploy') end def tasks @tasks ||= Pathname.new('lib/capistrano/tasks') end end
Version data entries
36 entries across 36 versions & 1 rubygems