class Serverkit::Resources::Directory

Private Instance Methods

destination() click to toggle source

@note Override

# File lib/serverkit/resources/directory.rb, line 11
def destination
  path
end
has_correct_entry?() click to toggle source

@note Override

# File lib/serverkit/resources/directory.rb, line 16
def has_correct_entry?
  check_command_from_identifier(:check_file_is_directory, destination)
end
update_entry() click to toggle source

@note Override

# File lib/serverkit/resources/directory.rb, line 21
def update_entry
  run_command_from_identifier(:create_file_as_directory, destination)
end