From 7879220fc9f6d7a49f138e8c450b97c36e5a0064 Mon Sep 17 00:00:00 2001 From: Dale Morgan Date: Wed, 1 May 2024 18:11:27 +0100 Subject: [PATCH 1/2] Updating homepage in gemspec after transfer --- aws_local_config_parser.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws_local_config_parser.gemspec b/aws_local_config_parser.gemspec index f2ad735..fc26ae8 100644 --- a/aws_local_config_parser.gemspec +++ b/aws_local_config_parser.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |spec| spec.summary = 'A simple gem to parse your local AWS config file.' spec.description = "Parse your local '\"$HOME\"/.aws/config' file." - spec.homepage = 'https://github.com/dmorgan-fa/aws_local_config_parser' + spec.homepage = 'https://github.com/fac/aws_local_config_parser' spec.license = 'MIT' spec.required_ruby_version = '>= 3.1.0' From 6d4a7861f8dd1bf1d5b8e52abcd8cf05a0483a73 Mon Sep 17 00:00:00 2001 From: Dale Morgan Date: Wed, 1 May 2024 18:17:55 +0100 Subject: [PATCH 2/2] Simplify the ruby matrix to only run the current ruby version --- .github/workflows/tests.yml | 10 ++-------- aws_local_config_parser.gemspec | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 450c759..2b8bde4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,20 +16,14 @@ on: pull_request: jobs: - build: + run-tests: + name: Run tests runs-on: ubuntu-latest - name: Ruby ${{ matrix.ruby }} - strategy: - matrix: - ruby: - - '3.3.0' - steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run the default task run: bundle exec rake diff --git a/aws_local_config_parser.gemspec b/aws_local_config_parser.gemspec index fc26ae8..41bc522 100644 --- a/aws_local_config_parser.gemspec +++ b/aws_local_config_parser.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.description = "Parse your local '\"$HOME\"/.aws/config' file." spec.homepage = 'https://github.com/fac/aws_local_config_parser' spec.license = 'MIT' - spec.required_ruby_version = '>= 3.1.0' + spec.required_ruby_version = '>= 3.1' spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/fac'