class Nova::Remote::Fake

This is a fake remote. It does nothing. Really. You can trust me.

Public Instance Methods

command() click to toggle source

Returns a command instance. Caches the instance across method calls.

@see Commands @return [Commands]

# File lib/nova/remote/fake.rb, line 27
def command
  @_command ||= Commands.new
end
file_system() click to toggle source

Returns a file system instance. Caches the instance across method calls.

@see FileSystem @return [FileSystem]

# File lib/nova/remote/fake.rb, line 45
def file_system
  @_file_system ||= FileSystem.new
end
operating_system() click to toggle source

Returns an operating system instance. Caches the instance across method calls.

@see OperatingSystem @return [OperatingSystem]

# File lib/nova/remote/fake.rb, line 36
def operating_system
  @_operating_system ||= OperatingSystem.new
end
platform() click to toggle source

Returns a platform instance. Caches the instance across method calls.

@see Platform @return [Platform]

# File lib/nova/remote/fake.rb, line 18
def platform
  @_platform ||= Platform.new
end