Module: Amigo

Defined in:
lib/amigo/uri.rb,
lib/amigo/term.rb,
lib/amigo/store.rb,
lib/amigo/where.rb,
lib/amigo/select.rb,
lib/amigo/triple.rb,
lib/amigo/version.rb,
lib/amigo/solution.rb,
lib/amigo/variable.rb,
lib/amigo/variables.rb,
lib/amigo/vocabulary.rb,
lib/amigo/join_result.rb,
lib/amigo/initial_result.rb,
lib/amigo/core_ext/object.rb

Defined Under Namespace

Modules: CoreExt Classes: InitialResult, JoinResult, Select, Solution, Store, Term, Triple, URI, Variable, Variables, Vocabulary, Where

Constant Summary collapse

EmptyStore =
Store.new
VERSION =
"0.1.4".freeze
DC =
Vocabulary.new("http://purl.org/dc/terms/")
FOAF =
Vocabulary.new("http://xmlns.com/foaf/0.1/")
RDF =
Vocabulary.new("http://www.w3.org/1999/02/22-rdf-syntax-ns#")
RDFS =
Vocabulary.new("http://www.w3.org/2000/01/rdf-schema#")
RSS =
Vocabulary.new("http://purl.org/rss/1.0/")
OWL =
Vocabulary.new("http://www.w3.org/2002/07/owl#")
XSD =
Vocabulary.new("http://www.w3.org/2001/XMLSchema#")

Class Method Summary collapse

Class Method Details

.storeObject



7
8
9
# File 'lib/amigo/store.rb', line 7

def self.store
  EmptyStore
end

.URI(uri) ⇒ Object



5
6
7
# File 'lib/amigo/uri.rb', line 5

def self.URI(uri)
  URI.new(uri)
end