rdf-smart 0.0.167 → 0.0.168
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/extconf.rb +3 -3
- data/rdf-smart.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81f7d3f8fca5eb43802eab4fa72026c23c86c094
|
4
|
+
data.tar.gz: 6f01fa0f29325ea95f4899180bd233bd445d85eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80c791c4451e37dd7ed5b1b2f1aa02561cde024a6a445c13dca3324fd6cc4d8db1f4f52de9e3ac7ab86501b7b96c22e0e1d423c25535ae62c958c76ca05bae02
|
7
|
+
data.tar.gz: beb65e1cc42e72a8712157f37a1b5e73b224f99067beb6b132f7e780079bebf544b44d3d66a94aaded45000189ce829eff4106b98bef16e16eb20ad511ec4aca
|
data/ext/extconf.rb
CHANGED
@@ -3,7 +3,7 @@ require 'mkmf'
|
|
3
3
|
spec = eval(File.read(File.dirname(__FILE__) + '/../rdf-smart.gemspec'))
|
4
4
|
PKG_NAME="rdf/smart"
|
5
5
|
|
6
|
-
$CFLAGS = '-g -Wall ' + $CFLAGS
|
6
|
+
$CFLAGS = ' -g -Wall ' + $CFLAGS
|
7
7
|
$LIBPATH.push(RbConfig::CONFIG['libdir'])
|
8
8
|
|
9
9
|
unless have_library("raptor2")
|
@@ -14,8 +14,8 @@ unless have_library("rasqal")
|
|
14
14
|
puts "Library rasqal not found"
|
15
15
|
exit 1
|
16
16
|
end
|
17
|
-
$CFLAGS = ' -DRSM_VERSION=\\"' + spec.version.to_s + '\\" -std=c99 ' + `rasqal-config --cflags`.chomp + $CFLAGS
|
18
|
-
$LDFLAGS = ' ' + `rasqal-config --libs`.chomp + $LDFLAGS
|
17
|
+
$CFLAGS = ' -DRSM_VERSION=\\"' + spec.version.to_s + '\\" -std=c99 ' + `rasqal-config --cflags`.chomp + ' ' + $CFLAGS
|
18
|
+
$LDFLAGS = ' ' + `rasqal-config --libs`.chomp + ' ' + $LDFLAGS
|
19
19
|
|
20
20
|
create_header()
|
21
21
|
create_makefile(PKG_NAME)
|
data/rdf-smart.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'rdf-smart'
|
3
|
-
s.version = '0.0.
|
4
|
-
s.date = '
|
3
|
+
s.version = '0.0.168'
|
4
|
+
s.date = '2016-05-17'
|
5
5
|
s.summary ="RDF.rb segfaults. A lot. We don't. RDF.rb has lots of features. We don't."
|
6
6
|
s.description ="Minimal sparql support for ruby. Basically the roqet tool from http://librdf.org, with always guessing input type, and always json output."
|
7
7
|
s.authors = ["Florian Stertz", "Juergen 'eTM' Mangler"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-smart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.168
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Stertz
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-05-17 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Minimal sparql support for ruby. Basically the roqet tool from http://librdf.org,
|
15
15
|
with always guessing input type, and always json output.
|
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
46
|
version: '0'
|
47
47
|
requirements: []
|
48
48
|
rubyforge_project:
|
49
|
-
rubygems_version: 2.
|
49
|
+
rubygems_version: 2.5.1
|
50
50
|
signing_key:
|
51
51
|
specification_version: 4
|
52
52
|
summary: RDF.rb segfaults. A lot. We don't. RDF.rb has lots of features. We don't.
|