Skip to content

Commit

Permalink
Merge pull request #98 from pact-foundation/ruby_3_2
Browse files Browse the repository at this point in the history
Ruby 3 2
  • Loading branch information
YOU54F committed May 17, 2023
2 parents 9f4aabe + fad40e4 commit 446c114
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: release-gem
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ on: [push, pull_request]

jobs:
test:
runs-on: "ubuntu-latest"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby_version: ["2.4", "2.7", "3.0"]
ruby_version: ["2.7", "3.0", "3.1", "3.2"]
os: ["ubuntu-latest","windows-latest","macos-latest"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
Expand Down
8 changes: 4 additions & 4 deletions pact-support.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency "rainbow", "~> 3.1.1"
spec.add_runtime_dependency "awesome_print", "~> 1.9"
spec.add_runtime_dependency "diff-lcs", "~> 1.4"
spec.add_runtime_dependency "diff-lcs", "~> 1.5"
spec.add_runtime_dependency "expgen", "~> 0.1"

spec.add_development_dependency "rspec", ">= 2.14", "< 4.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "webmock", "~> 3.3"
spec.add_development_dependency "webmock", "~> 3.18.1"
spec.add_development_dependency "pry"
spec.add_development_dependency "fakefs", "~> 0.11.2"
spec.add_development_dependency "hashie", "~> 2.0"
spec.add_development_dependency "fakefs", "~> 2.4.0"
spec.add_development_dependency "hashie", "~> 5.0"
spec.add_development_dependency "activesupport"
spec.add_development_dependency "appraisal"
spec.add_development_dependency "conventional-changelog", "~> 1.3"
Expand Down

0 comments on commit 446c114

Please sign in to comment.