SparqlTransmission 1 → 1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/SparqlTransmission.gemspec +8 -2
- data/lib/SparqlTransmission.rb +9 -1
- data/tests/SparqlTransmissionTest.rb +3 -0
- data/tests/sparql_foaf_response.xml +1966 -0
- metadata +8 -4
metadata
CHANGED
@@ -4,7 +4,8 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 1
|
7
|
-
|
7
|
+
- 1
|
8
|
+
version: "1.1"
|
8
9
|
platform: ruby
|
9
10
|
authors:
|
10
11
|
- Michael Sokol
|
@@ -31,9 +32,10 @@ files:
|
|
31
32
|
- lib/SparqlTransmission.rb
|
32
33
|
- tests/SparqlTransmissionTest.rb
|
33
34
|
- tests/sparql_response.xml
|
35
|
+
- tests/sparql_foaf_response.xml
|
34
36
|
- examples/example.rb
|
35
37
|
has_rdoc: true
|
36
|
-
homepage: http://
|
38
|
+
homepage: http://github.com/mikaa123/SparqlTransmission
|
37
39
|
licenses: []
|
38
40
|
|
39
41
|
post_install_message:
|
@@ -64,5 +66,7 @@ rubygems_version: 1.3.7
|
|
64
66
|
signing_key:
|
65
67
|
specification_version: 3
|
66
68
|
summary: SparqlTransmission handles SPARQL queries over distant end-point and format the results in a ruby hash
|
67
|
-
test_files:
|
68
|
-
|
69
|
+
test_files:
|
70
|
+
- tests/SparqlTransmissionTest.rb
|
71
|
+
- tests/sparql_response.xml
|
72
|
+
- tests/sparql_foaf_response.xml
|