class Serverkit::Resources::RemoteFile
Private Instance Methods
Source
# File lib/serverkit/resources/remote_file.rb, line 13 def content @content ||= ::File.read(source) end
Source
# File lib/serverkit/resources/remote_file.rb, line 18 def has_correct_entry? has_remote_file? && has_correct_content? end
@note Override
Source
# File lib/serverkit/resources/remote_file.rb, line 23 def update_entry send_file(source, destination) end
@note Override