From 6fc2ded449c7755dd8e4cf216bf50dfc357760ee Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Sun, 28 Jun 2026 17:56:11 +0800 Subject: [PATCH] fix: drop git-source lutaml-model from Gemfile Release gems must not depend on git sources. The Gemfile override points at lutaml-model main on GitHub, but lutaml-model 0.8.16 is already published on RubyGems and the gemspec already declares lutaml-model ~> 0.8.0. Removing the override lets Bundler resolve to the published gem. Verified locally: bundle install resolves to lutaml-model 0.8.16 from RubyGems, and bundle exec rake spec passes (811 examples, 0 failures). --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index 2e84117..0f230f8 100644 --- a/Gemfile +++ b/Gemfile @@ -6,7 +6,6 @@ source "https://rubygems.org" gemspec gem "canon" -gem "lutaml-model", github: "lutaml/lutaml-model", branch: "fix/global-context-register-lookup-fallback" gem "nokogiri" gem "rake" gem "rspec"