Skip to content

Commit

Permalink
Merge pull request #20 from jrochkind/replace_linkeddata_dependency
Browse files Browse the repository at this point in the history
replace linkeddata dependency with rdf and nokogiri
  • Loading branch information
jrochkind committed Dec 16, 2019
2 parents 7df4a57 + 36fc85e commit 769c213
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ldpath.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency "parslet"
spec.add_dependency "linkeddata"
spec.add_dependency "rdf", '~> 3.0'
spec.add_dependency "nokogiri", "~> 1.8"

# spec.add_development_dependency "bixby", "~> 1.0.0"
spec.add_development_dependency "bundler", "~> 2.0"
Expand Down
7 changes: 6 additions & 1 deletion lib/ldpath.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
require "ldpath/version"
require 'linkeddata'
require 'logger'
require 'nokogiri'
require 'rdf'
# require rdf/ntriples may not be necessary, may only really be necessary
# for ldpath_program_spec.rb tests, but I'm not certain, and I don't think it hurts
# to do it here.
require 'rdf/ntriples'

module Ldpath
require 'ldpath/field_mapping'
Expand Down

0 comments on commit 769c213

Please sign in to comment.