-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
40 lines (37 loc) · 3.15 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
source "https://rubygems.org"
gemspec
gem 'rack-rdf', git: "https://github.com/ruby-rdf/rack-rdf", branch: "develop"
gem 'rack-linkeddata', git: "https://github.com/ruby-rdf/rack-linkeddata", branch: "develop"
gem "linkeddata", git: "https://github.com/ruby-rdf/linkeddata", branch: "develop"
gem 'json-ld', git: "https://github.com/ruby-rdf/json-ld", branch: "develop"
gem 'json-ld-preloaded', git: "https://github.com/ruby-rdf/json-ld-preloaded", branch: "develop"
gem "ld-patch", git: "https://github.com/ruby-rdf/ld-patch", branch: "develop"
gem "rdf", git: "https://github.com/ruby-rdf/rdf", branch: "develop"
gem 'rdf-aggregate-repo', git: "https://github.com/ruby-rdf/rdf-aggregate-repo", branch: "develop"
gem 'rdf-hamster-repo', git: 'https://github.com/ruby-rdf/rdf-hamster-repo', branch: 'develop'
gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop"
gem 'rdf-json', git: "https://github.com/ruby-rdf/rdf-json", branch: "develop"
gem 'rdf-microdata', git: "https://github.com/ruby-rdf/rdf-microdata", branch: "develop"
gem 'rdf-n3', git: "https://github.com/ruby-rdf/rdf-n3", branch: "develop"
gem 'rdf-normalize', git: "https://github.com/ruby-rdf/rdf-normalize", branch: "develop"
gem 'rdf-ordered-repo', git: 'https://github.com/ruby-rdf/rdf-ordered-repo', branch: 'develop'
gem 'rdf-rdfa', git: "https://github.com/ruby-rdf/rdf-rdfa", branch: "develop"
gem 'rdf-rdfxml', git: "https://github.com/ruby-rdf/rdf-rdfxml", branch: "develop"
gem 'rdf-reasoner', git: "https://github.com/ruby-rdf/rdf-reasoner", branch: "develop"
gem "rdf-spec", git: "https://github.com/ruby-rdf/rdf-spec", branch: "develop"
gem 'rdf-tabular', git: "https://github.com/ruby-rdf/rdf-tabular", branch: "develop"
gem 'rdf-trig', git: "https://github.com/ruby-rdf/rdf-trig", branch: "develop"
gem 'rdf-trix', git: "https://github.com/ruby-rdf/rdf-trix", branch: "develop"
gem 'rdf-turtle', git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop"
gem 'rdf-vocab', git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop"
gem 'rdf-xsd', git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop"
gem 'shacl', git: "https://github.com/ruby-rdf/shacl", branch: "develop"
gem 'shex', git: "https://github.com/ruby-rdf/shex", branch: "develop"
gem 'sparql', git: "https://github.com/ruby-rdf/sparql", branch: "develop"
gem 'sparql-client', git: "https://github.com/ruby-rdf/sparql-client", branch: "develop"
gem 'nokogiri'
group :development do
gem "byebug", platforms: :mri
gem "ebnf", git: "https://github.com/dryruby/ebnf", branch: "develop"
gem 'sxp', git: "https://github.com/dryruby/sxp.rb", branch: "develop"
end