class RemoteValue

Attributes

uri[R]

Public Class Methods

new(uri) click to toggle source
# File lib/exel/remote_value.rb, line 4
def initialize(uri)
  @uri = uri
end

Public Instance Methods

==(other) click to toggle source
# File lib/exel/remote_value.rb, line 8
def ==(other)
  other.class == self.class && other.uri == @uri
end