@@ -109,6 +109,7 @@ Notably, {RDF::Queryable#query} and {RDF::Query#execute} are now completely symm
109109* [ Getting started with RDF and SPARQL using 4store and RDF.rb] ( https://www.jenitennison.com/blog/node/152 )
110110
111111## Command Line
112+
112113When installed, RDF.rb includes a ` rdf ` shell script which acts as a wrapper to perform a number of different
113114operations on RDF files using available readers and writers.
114115
151152 end
152153
153154### Reading RDF data in other formats
155+
154156{RDF::Reader.open} and {RDF::Repository.load} use a number of mechanisms to determine the appropriate reader
155157to use when loading a file. The specific format to use can be forced using, e.g. ` format: :ntriples `
156158option where the specific format symbol is determined by the available readers. Both also use
@@ -177,6 +179,7 @@ be detected from filename or other options, or that more than one format is iden
177179match will be used to read the input.
178180
179181### Writing RDF data using other formats
182+
180183{RDF::Writer.open}, {RDF::Enumerable#dump}, {RDF::Writer.dump} take similar options to {RDF::Reader.open} to determine the
181184appropriate writer to use.
182185
@@ -196,6 +199,7 @@ A specific sub-type of Writer can also be invoked directly:
196199 File.open("hello.nq", "w") {|f| f << repo.dump(:nquads)}
197200
198201## Reader/Writer convenience methods
202+
199203{RDF::Enumerable} implements ` to_{format} ` for each available instance of {RDF::Reader}.
200204For example, if ` rdf/turtle ` is loaded, this allows the following:
201205
@@ -471,7 +475,6 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange develo
471475 which you will be asked to agree to on the first commit to a repo within the organization.
472476 Note that the agreement applies to all repos in the [ Ruby RDF] ( https://github.com/ruby-rdf/ ) organization.
473477
474-
475478## License
476479
477480This is free and unencumbered public domain software. For more information,
0 commit comments