From a1f705f4221ec29553bb755f8c075e63cf845ea1 Mon Sep 17 00:00:00 2001 From: Michael Roudnitski Date: Thu, 1 Feb 2024 18:12:33 -0500 Subject: [PATCH] Updates --- .github/workflows/lint.yml | 2 +- .github/workflows/rspec-tests.yml | 3 ++- sn_filterable.gemspec | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index de07de8..c3f6911 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.2 diff --git a/.github/workflows/rspec-tests.yml b/.github/workflows/rspec-tests.yml index c184c0c..bc85562 100644 --- a/.github/workflows/rspec-tests.yml +++ b/.github/workflows/rspec-tests.yml @@ -18,11 +18,12 @@ jobs: POSTGRES_DB: sn_filterable_test steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 3.2 + bundler-cache: true - name: Setup Database env: RAILS_ENV: test diff --git a/sn_filterable.gemspec b/sn_filterable.gemspec index f6da0af..c0c9c7b 100644 --- a/sn_filterable.gemspec +++ b/sn_filterable.gemspec @@ -5,14 +5,14 @@ require_relative "lib/sn_filterable/version" Gem::Specification.new do |spec| spec.name = "sn_filterable" spec.version = SnFilterable::VERSION - spec.authors = ["Chase McDougall"] - spec.email = ["chasemcdougall@hotmail.com"] + spec.authors = ["IBM Skills Network"] + spec.email = ["Skills.Network@ibm.com"] spec.summary = "Skills Network - Item filtering component" spec.description = "This gem adds a ViewComponent powered filtering component for searching and filtering your PostgreSQL data." spec.homepage = "https://github.com/ibm-skills-network/sn_filterable" spec.license = "MIT" - spec.required_ruby_version = ">= 2.7.0" + spec.required_ruby_version = ">= 3.2.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/ibm-skills-network/sn_filterable"