module Capistrano::SecretsGenerate::Paths
Public Instance Methods
secret_token_current_path()
click to toggle source
# File lib/capistrano/secrets_generate/paths.rb, line 18 def secret_token_current_path return current_path.join(secret_token_path) end
secret_token_linked_dir()
click to toggle source
# File lib/capistrano/secrets_generate/paths.rb, line 14 def secret_token_linked_dir return secret_token_linked_path.join('..') end
secret_token_linked_path()
click to toggle source
# File lib/capistrano/secrets_generate/paths.rb, line 10 def secret_token_linked_path return shared_path.join(secret_token_path) end
secret_token_path()
click to toggle source
# File lib/capistrano/secrets_generate/paths.rb, line 6 def secret_token_path return Pathname.new(fetch(:secret_file)) end