Skip to content

Commit aa786e5

Browse files
committed
Finish 1.0.8
2 parents 30de44a + 96c86a5 commit aa786e5

File tree

18 files changed

+736155
-33
lines changed

18 files changed

+736155
-33
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ rvm:
77
- 1.9.3
88
- 2.0.0
99
- jruby-19mode
10-
# - rbx-19mode
10+
- rbx-19mode

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Install with `gem install json-ld`
160160
"foaf:nick": { "@list": [ "joe", "bob", "jaybe" ] }
161161
})
162162

163-
graph = RDF::Graph.new << JSON::LD::API.toRDF(input)
163+
graph = RDF::Graph.new << JSON::LD::API.toRdf(input)
164164

165165
require 'rdf/turtle'
166166
graph.dump(:ttl, :prefixes => {:foaf => "http://xmlns.com/foaf/0.1/"})
@@ -190,7 +190,7 @@ Install with `gem install json-ld`
190190
})
191191

192192
compacted = nil
193-
JSON::LD::API::fromRDF(input) do |expanded|
193+
JSON::LD::API::fromRdf(input) do |expanded|
194194
compacted = JSON::LD::API.compact(expanded, context['@context'])
195195
end
196196
compacted =>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.7
1+
1.0.8

bin/jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def run(input, options)
2020
if options[:format] == :jsonld && options[:input_format] != :jsonld
2121
r = reader_class.new(input, options[:parser_options])
2222
g = RDF::Repository.new << r
23-
input = JSON::LD::API.fromRDF(g)
23+
input = JSON::LD::API.fromRdf(g)
2424
end
2525

2626
prefixes = {}

0 commit comments

Comments
 (0)