File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ opts.each do |opt, arg|
116116 when '--dbg' then parser_options [ :debug ] = ::JSON ::LD ::debug = true
117117 when '--compact' then options [ :compact ] = true
118118 when '--context' then options [ :context ] = arg
119- when '--execute' then input = arg
119+ when '--evaluate' then input = arg
120120 when '--expand' then options [ :expand ] = true
121121 when '--format' then options [ :output_format ] = arg . to_sym
122122 when '--flatten' then options [ :flatten ] = arg
Original file line number Diff line number Diff line change 2828 "doap:homepage" : "http://github.com/ruby-rdf/json-ld/" ,
2929 "doap:license" : "http://creativecommons.org/licenses/publicdomain/" ,
3030 "doap:shortdesc" : "JSON-LD support for RDF.rb." ,
31- "doap:description" : "RDF.rb plugin for parsing/serializing JSON-LD data." ,
31+ "doap:description" : "RDF.rb extension for parsing/serializing JSON-LD data." ,
3232 "doap:created" : "2011-05-07" ,
3333 "doap:platform" : "Ruby" ,
3434 "doap:implements" : [
Original file line number Diff line number Diff line change 1111 doap:blog <http://greggkellogg.net/> ;
1212 doap:bug-database <http://github.com/ruby-rdf/json-ld/issues> ;
1313 doap:created " 2011-05-07" ^^xsd:date ;
14- doap:description " RDF.rb plugin for parsing/serializing JSON-LD data." @en ;
14+ doap:description " RDF.rb extension for parsing/serializing JSON-LD data." @en ;
1515 doap:developer <http://greggkellogg.net/foaf#me> ;
1616 doap:documenter <http://greggkellogg.net/foaf#me> ;
1717 doap:homepage <http://github.com/ruby-rdf/json-ld/> ;
Original file line number Diff line number Diff line change 1111 doap:blog <http://greggkellogg.net/> ;
1212 doap:bug-database <http://github.com/ruby-rdf/json-ld/issues> ;
1313 doap:created " 2011-05-07" ^^xsd:date ;
14- doap:description " RDF.rb plugin for parsing/serializing JSON-LD data." @en ;
14+ doap:description " RDF.rb extension for parsing/serializing JSON-LD data." @en ;
1515 doap:developer <http://greggkellogg.net/foaf#me> ;
1616 doap:documenter <http://greggkellogg.net/foaf#me> ;
1717 doap:homepage <http://github.com/ruby-rdf/json-ld/> ;
Original file line number Diff line number Diff line change 33
44module JSON
55 ##
6- # **`JSON::LD`** is a JSON-LD plugin for RDF.rb.
6+ # **`JSON::LD`** is a JSON-LD extension for RDF.rb.
77 #
88 # @example Requiring the `JSON::LD` module
99 # require 'json/ld'
Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ def parse_object(item)
101101 #
102102 # @param [Array] list
103103 # The Array to serialize as a list
104- # @param [Array<RDF::Statement>] list_results
105- # Statements for each item in the list
106104 # @yield statement
107105 # @yieldparam [RDF::Resource] statement
106+ # @return [Array<RDF::Statement>]
107+ # Statements for each item in the list
108108 def parse_list ( list )
109109 debug ( 'parse_list' ) { "list: #{ list . inspect } " }
110110
You can’t perform that action at this time.
0 commit comments