Skip to content

Commit ffa8b5c

Browse files
authored
feat: Add support for Ruby 3.1 (#74)
1 parent 8f87ed8 commit ffa8b5c

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ name: Test
22
on: [ push ]
33
jobs:
44
test:
5+
strategy:
6+
matrix:
7+
ruby: [ 3.1, 3.2 ]
58
runs-on: ubuntu-latest
69
steps:
7-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
811
- uses: ruby/setup-ruby@319066216501fbd5e2d568f14b7d68c19fb67a5d
912
with:
10-
ruby-version: '3.2'
13+
ruby-version: ${{ matrix.ruby }}
1114
- run: bundle install
1215
- run: bundle exec rspec spec

phraseapp-in-context-editor-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
44
s.name = "phraseapp-in-context-editor-ruby"
55
s.version = "2.0.0"
66
s.platform = Gem::Platform::RUBY
7-
s.required_ruby_version = ">= 3.2.0"
7+
s.required_ruby_version = ">= 3.1.0"
88
s.authors = ["Phrase"]
99
s.email = ["info@phrase.com"]
1010
s.homepage = "https://phrase.com"

0 commit comments

Comments
 (0)