Skip to content

Commit

Permalink
Merge pull request #67 from alex-tan/support-ruby-3-2
Browse files Browse the repository at this point in the history
Support Ruby 3.2
  • Loading branch information
briandunn authored Mar 15, 2023
2 parents abd4973 + dcb951d commit 9a18ad2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
strategy:
matrix:
gemfile: [6,7,8,9,10]
ruby-version: ['2.6', '2.7', '3.0']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: install bundle
Expand Down
2 changes: 1 addition & 1 deletion flatware-cucumber.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
)
s.homepage = 'http://github.com/briandunn/flatware'
s.licenses = ['MIT']
s.required_ruby_version = ['>= 2.6', '< 3.2']
s.required_ruby_version = ['>= 2.6', '< 3.3']
s.require_paths = ['lib']
s.add_dependency %(cucumber), '~> 3.0'
s.add_dependency %(flatware), Flatware::VERSION
Expand Down
2 changes: 1 addition & 1 deletion flatware-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
)
s.homepage = 'http://github.com/briandunn/flatware'
s.licenses = ['MIT']
s.required_ruby_version = ['>= 2.6', '< 3.2']
s.required_ruby_version = ['>= 2.6', '< 3.3']
s.require_paths = ['lib']
s.add_dependency %(flatware), Flatware::VERSION
s.add_dependency %(rspec), '>= 3.6'
Expand Down
2 changes: 1 addition & 1 deletion flatware.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.homepage = 'http://github.com/briandunn/flatware'

s.licenses = ['MIT']
s.required_ruby_version = ['>= 2.6', '< 3.2']
s.required_ruby_version = ['>= 2.6', '< 3.3']
s.require_paths = ['lib']
s.executables = ['flatware']
s.add_dependency %(thor), '< 2.0'
Expand Down

0 comments on commit 9a18ad2

Please sign in to comment.