module Tripod::Resource::ClassMethods
Public Instance Methods
===(other)
click to toggle source
Performs class equality checking.
# File lib/tripod/resource.rb, line 104 def ===(other) other.class == Class ? self <= other : other.is_a?(self) end
get_graph_uri()
click to toggle source
# File lib/tripod/resource.rb, line 112 def get_graph_uri self._GRAPH_URI end
graph_uri(new_graph_uri)
click to toggle source
# File lib/tripod/resource.rb, line 108 def graph_uri(new_graph_uri) self._GRAPH_URI = new_graph_uri end