|
1 |
| -# frozen_string_literal: true |
2 |
| - |
3 |
| -source "https://rubygems.org" |
4 |
| -gem "nokogiri", '~> 1.13', '>= 1.13.4' |
| 1 | +source 'https://rubygems.org' |
5 | 2 |
|
6 | 3 | gemspec
|
7 |
| -gem 'json-canonicalization', git: "https://github.com/dryruby/json-canonicalization", branch: "develop" |
8 |
| -gem 'rdf', git: "https://github.com/ruby-rdf/rdf", branch: "develop" |
| 4 | +gem 'json-canonicalization', git: 'https://github.com/dryruby/json-canonicalization', branch: 'develop' |
| 5 | +gem 'rdf', git: 'https://github.com/ruby-rdf/rdf', branch: 'develop' |
| 6 | +gem 'nokogiri', '~> 1.15', '>= 1.15.4' |
9 | 7 |
|
10 | 8 | group :development do
|
11 |
| - gem 'earl-report' |
12 |
| - gem 'ebnf', git: "https://github.com/dryruby/ebnf", branch: "develop" |
13 |
| - gem 'fasterer' |
14 |
| - gem 'json-ld-preloaded', github: "ruby-rdf/json-ld-preloaded", branch: "develop" |
15 |
| - gem 'ld-patch', github: "ruby-rdf/ld-patch", branch: "develop" |
16 |
| - gem 'linkeddata', git: "https://github.com/ruby-rdf/linkeddata", branch: "develop" |
17 |
| - gem 'rack-linkeddata', git: "https://github.com/ruby-rdf/rack-linkeddata", branch: "develop" |
18 |
| - gem 'rdf-aggregate-repo', git: "https://github.com/ruby-rdf/rdf-aggregate-repo", branch: "develop" |
19 |
| - gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop" |
20 |
| - gem 'rdf-json', github: "ruby-rdf/rdf-json", branch: "develop" |
21 |
| - gem 'rdf-microdata', git: "https://github.com/ruby-rdf/rdf-microdata", branch: "develop" |
22 |
| - gem 'rdf-n3', github: "ruby-rdf/rdf-n3", branch: "develop" |
23 |
| - gem 'rdf-normalize', github: "ruby-rdf/rdf-normalize", branch: "develop" |
24 |
| - gem 'rdf-rdfa', git: "https://github.com/ruby-rdf/rdf-rdfa", branch: "develop" |
25 |
| - gem 'rdf-rdfxml', git: "https://github.com/ruby-rdf/rdf-rdfxml", branch: "develop" |
26 |
| - gem 'rdf-reasoner', github: "ruby-rdf/rdf-reasoner", branch: "develop" |
27 |
| - gem 'rdf-spec', git: "https://github.com/ruby-rdf/rdf-spec", branch: "develop" |
28 |
| - gem 'rdf-tabular', github: "ruby-rdf/rdf-tabular", branch: "develop" |
29 |
| - gem 'rdf-trig', git: "https://github.com/ruby-rdf/rdf-trig", branch: "develop" |
30 |
| - gem 'rdf-trix', github: "ruby-rdf/rdf-trix", branch: "develop" |
31 |
| - gem 'rdf-turtle', git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop" |
32 |
| - gem 'rdf-vocab', git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop" |
33 |
| - gem 'rdf-xsd', git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop" |
34 |
| - gem 'ruby-prof', platforms: :mri |
35 |
| - gem 'shex', github: "ruby-rdf/shex", branch: "develop" |
36 |
| - gem 'sinatra-linkeddata', git: "https://github.com/ruby-rdf/sinatra-linkeddata", branch: "develop" |
37 |
| - gem 'sparql', git: "https://github.com/ruby-rdf/sparql", branch: "develop" |
38 |
| - gem 'sparql-client', git: "https://github.com/ruby-rdf/sparql-client", branch: "develop" |
39 |
| - gem 'sxp', git: "https://github.com/dryruby/sxp.rb", branch: "develop" |
| 9 | + gem 'ebnf', git: 'https://github.com/dryruby/ebnf', branch: 'develop' |
| 10 | + gem 'json-ld-preloaded', git: 'https://github.com/ruby-rdf/json-ld-preloaded', branch: 'develop' |
| 11 | + gem 'rdf-isomorphic', git: 'https://github.com/ruby-rdf/rdf-isomorphic', branch: 'develop' |
| 12 | + gem 'rdf-spec', git: 'https://github.com/ruby-rdf/rdf-spec', branch: 'develop' |
| 13 | + gem 'rdf-trig', git: 'https://github.com/ruby-rdf/rdf-trig', branch: 'develop' |
| 14 | + gem 'rdf-turtle', git: 'https://github.com/ruby-rdf/rdf-turtle', branch: 'develop' |
| 15 | + gem 'rdf-vocab', git: 'https://github.com/ruby-rdf/rdf-vocab', branch: 'develop' |
| 16 | + gem 'rdf-xsd', git: 'https://github.com/ruby-rdf/rdf-xsd', branch: 'develop' |
| 17 | + gem 'sxp', git: 'https://github.com/dryruby/sxp.rb', branch: 'develop' |
40 | 18 | end
|
41 | 19 |
|
42 | 20 | group :development, :test do
|
43 | 21 | gem 'benchmark-ips'
|
| 22 | + gem 'fasterer' |
44 | 23 | gem 'psych', platforms: %i[mri rbx]
|
45 | 24 | gem 'rake'
|
46 | 25 | gem 'rubocop'
|
47 | 26 | gem 'rubocop-performance'
|
48 | 27 | gem 'rubocop-rspec'
|
49 |
| - gem 'simplecov', '~> 0.21', platforms: :mri |
| 28 | + gem 'ruby-prof', platforms: :mri |
| 29 | + gem 'simplecov', '~> 0.22', platforms: :mri |
50 | 30 | gem 'simplecov-lcov', '~> 0.8', platforms: :mri
|
51 | 31 | end
|
52 | 32 |
|
53 | 33 | group :debug do
|
54 |
| - gem "byebug", platforms: :mri |
| 34 | + gem 'byebug', platforms: :mri |
55 | 35 | end
|
0 commit comments