class Librarian::Ansible::Environment

Public Instance Methods

adapter_name() click to toggle source
# File lib/librarian/ansible/environment.rb, line 12
def adapter_name
  "ansible"
end
adapter_version() click to toggle source
# File lib/librarian/ansible/environment.rb, line 16
def adapter_version
  VERSION
end
config_keys() click to toggle source
Calls superclass method
# File lib/librarian/ansible/environment.rb, line 25
def config_keys
  super + %w[
    install.strip-dot-git
    path
  ]
end
install_path() click to toggle source
# File lib/librarian/ansible/environment.rb, line 20
def install_path
  part = config_db["path"] || "librarian_roles"
  project_path.join(part)
end