Skip to content

Commit

Permalink
feat: Add support for Ruby 3.1 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilka2 authored Apr 23, 2024
1 parent 8f87ed8 commit ffa8b5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ name: Test
on: [ push ]
jobs:
test:
strategy:
matrix:
ruby: [ 3.1, 3.2 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@319066216501fbd5e2d568f14b7d68c19fb67a5d
with:
ruby-version: '3.2'
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rspec spec
2 changes: 1 addition & 1 deletion phraseapp-in-context-editor-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Gem::Specification.new do |s|
s.name = "phraseapp-in-context-editor-ruby"
s.version = "2.0.0"
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 3.2.0"
s.required_ruby_version = ">= 3.1.0"
s.authors = ["Phrase"]
s.email = ["[email protected]"]
s.homepage = "https://phrase.com"
Expand Down

0 comments on commit ffa8b5c

Please sign in to comment.