From b9382fe8c1593c7d6589cd62d59903926cfca51b Mon Sep 17 00:00:00 2001 From: Austin Ziegler Date: Thu, 16 Feb 2023 21:45:29 -0500 Subject: Various upgrades - Update the .github/workflows/ci.yml workflow to test Ruby 3.2 and more reliably test certain combinations rather than depending on exclusions. - Change `.standard.yml` configuration to format for Ruby 2.3 as certain files are not properly detected with Ruby 2.0. - Change from `hoe-git` to `hoe-git2` to support Hoe version 4. - Apply `standardrb --fix`. - Update other dependencies. --- support/deps.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'support') diff --git a/support/deps.rb b/support/deps.rb index 9254171..24f9c09 100644 --- a/support/deps.rb +++ b/support/deps.rb @@ -11,10 +11,12 @@ class Deps weighted_deps = {} deps.each do |name| - downloads = gem_downloads(name) - weighted_deps[name] = downloads if downloads - rescue => e - puts "#{name} #{e.message}" + begin + downloads = gem_downloads(name) + weighted_deps[name] = downloads if downloads + rescue => e + puts "#{name} #{e.message}" + end end weighted_deps -- cgit v1.2.1