You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RDF::Virtuoso::Repository subclasses RDF::Repository built on RDF.rb and is the main connection class built on top of APISmith to establish the read and write methods to a Virtuoso store SPARQL endpoint.
`RDF::Virtuoso::Repository` subclasses `RDF::Repository` built on [RDF.rb][] and is the main connection class built on top of APISmith to establish the read and write methods to a Virtuoso store SPARQL endpoint.
@@ -69,3 +69,30 @@ or you can dynamically add RDF::Vocabulary objects
69
69
Results will be an array of RDF::Query::Solution that can be accessed by bindings or iterated
70
70
71
71
count = result.first[:count].to_i
72
+
73
+
## Contributing
74
+
75
+
This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
76
+
77
+
* Do your best to adhere to the existing coding conventions and idioms.
78
+
* Don't use hard tabs, and don't leave trailing whitespace on any line.
79
+
Before committing, run `git diff --check` to make sure of this.
80
+
* Do document every method you add using [YARD][] annotations. Read the
81
+
[tutorial][YARD-GS] or just look at the existing code for examples.
82
+
* Don't touch the `.gemspec` or `VERSION` files. If you need to change them,
83
+
do so on your private branch only.
84
+
* Do note that in order for us to merge any non-trivial changes (as a rule
85
+
of thumb, additions larger than about 15 lines of code), we need an
86
+
explicit [public domain dedication][PDD] on record from you,
87
+
which you will be asked to agree to on the first commit to a repo within the organization.
88
+
Note that the agreement applies to all repos in the [Ruby RDF](https://github.com/ruby-rdf/) organization.
89
+
90
+
## License
91
+
92
+
This is free and unencumbered public domain software. For more information,
93
+
see <https://unlicense.org/> or the accompanying {file:LICENSE} file.
doap:shortdesc "An RDF.rb extension library for interacting with a Virtuoso rdf store."@en ;
13
13
doap:description "An RDF.rb extension library for interacting with a Virtuoso rdf store.\nSupports SPARQL 1.1 UPDATE extensions and some Virtuoso specific commands."@en ;
s.summary=%q{An RDF.rb extension library for interacting with a Virtuoso rdf store}
12
12
s.description=%q{An RDF.rb extension library for interacting with a Virtuoso rdf store.\nSupports SPARQL 1.1 UPDATE extensions and some Virtuoso specific commands.}
0 commit comments