From 8ac8d5970c49a3ef7ceee7d7f1b815b4225f2791 Mon Sep 17 00:00:00 2001 From: Ashley Willard Date: Wed, 8 May 2024 11:41:37 -0700 Subject: [PATCH 1/2] replace all darwin platforms with universal platform --- Gemfile.lock | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e2cc6e0..be5ad21 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -42,6 +42,11 @@ GEM sorbet (0.5.10969) sorbet-static (= 0.5.10969) sorbet-runtime (0.5.10969) + sorbet-static (0.5.10969-universal-darwin-14) + sorbet-static (0.5.10969-universal-darwin-15) + sorbet-static (0.5.10969-universal-darwin-16) + sorbet-static (0.5.10969-universal-darwin-17) + sorbet-static (0.5.10969-universal-darwin-18) sorbet-static (0.5.10969-universal-darwin-19) sorbet-static (0.5.10969-universal-darwin-20) sorbet-static (0.5.10969-universal-darwin-21) @@ -73,10 +78,7 @@ GEM yard (>= 0.9) PLATFORMS - arm64-darwin-20 - arm64-darwin-21 - arm64-darwin-22 - x86_64-darwin-19 + universal-darwin x86_64-linux DEPENDENCIES From 70eb75b0f3dd04390921a46de68f44122f0bcffa Mon Sep 17 00:00:00 2001 From: Ashley Willard Date: Wed, 8 May 2024 11:47:57 -0700 Subject: [PATCH 2/2] add bigdecimal as a dependency and bump minimum rails version --- Gemfile.lock | 2 ++ visualize_packs.gemspec | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index be5ad21..3e96130 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,6 +2,7 @@ PATH remote: . specs: visualize_packs (0.5.23) + bigdecimal packs-specification parse_packwerk (>= 0.20.0) sorbet-runtime @@ -10,6 +11,7 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.2) + bigdecimal (3.1.8) diff-lcs (1.5.0) netrc (0.11.0) packs-specification (0.0.10) diff --git a/visualize_packs.gemspec b/visualize_packs.gemspec index c15660c..3a1f45d 100644 --- a/visualize_packs.gemspec +++ b/visualize_packs.gemspec @@ -23,8 +23,9 @@ Gem::Specification.new do |spec| # Specify which files should be added to the gem when it is released. spec.files = Dir['README.md', 'lib/**/*', "bin/**/*"] spec.require_paths = ['lib'] - spec.required_ruby_version = '>= 2.6' + spec.required_ruby_version = '>= 2.7' + spec.add_dependency 'bigdecimal' spec.add_development_dependency 'bundler' spec.add_development_dependency "rspec", "~> 3.12" spec.add_development_dependency 'sorbet'