From 6556441ce904f22560b90d5ad2d42deaf0b1a08f Mon Sep 17 00:00:00 2001 From: Maikel Date: Wed, 18 Feb 2026 11:08:23 +1100 Subject: [PATCH] Remove bigdecimal dependency declaration The BigDecimal class is not used in this code base. And since we have a circular dependency from rdf to rdf-turtle and back, we are otherwise unable to update the bigdecimal gem in the main rdf repository. --- rdf-turtle.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/rdf-turtle.gemspec b/rdf-turtle.gemspec index f0a828b..bc8a7ac 100755 --- a/rdf-turtle.gemspec +++ b/rdf-turtle.gemspec @@ -28,7 +28,6 @@ Gem::Specification.new do |gem| gem.required_ruby_version = '>= 3.0' gem.requirements = [] gem.add_runtime_dependency 'base64', '~> 0.2' - gem.add_runtime_dependency 'bigdecimal', '~> 3.1', '>= 3.1.9' gem.add_runtime_dependency 'ebnf', '~> 2.6' gem.add_runtime_dependency 'rdf', '~> 3.3', '>= 3.3.4' gem.add_runtime_dependency 'readline', '~> 0.0'