class Sumac::RemoteReference
Attributes
remote_object[R]
Public Class Methods
new(connection, exposed_id)
click to toggle source
Calls superclass method
Sumac::Reference::new
# File lib/sumac/remote_reference.rb, line 6 def initialize(connection, exposed_id) super(connection, exposed_id) @remote_object = RemoteObject.new(@connection, self) end
Public Instance Methods
remove()
click to toggle source
# File lib/sumac/remote_reference.rb, line 11 def remove @connection.remote_references.remove(self) end