Skip to content

Commit

Permalink
Merge pull request #1196 from tdiary/support-ruby-3-4
Browse files Browse the repository at this point in the history
Support Ruby 3.4
  • Loading branch information
hsbt authored Dec 27, 2024
2 parents b7f6fbf + 859ccfd commit b07de8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: build (${{ matrix.ruby }}/${{ matrix.test_mode }})
strategy:
matrix:
ruby: [ '3.3', '3.2', '3.1', '3.0' ]
ruby: [ '3.4', '3.3', '3.2', '3.1', '3.0' ]
test_mode: [ rack, gem ]
runs-on: ubuntu-latest
services:
Expand All @@ -21,12 +21,6 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: |
gem install bundler --no-document -v '2.4.22'
if: matrix.ruby == '2.7'
- run: |
gem update --system --no-document
if: matrix.ruby != '2.7'
- name: Install dependencies
run: |
echo 'gemspec' > Gemfile.local
Expand Down
1 change: 1 addition & 0 deletions tdiary.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'hikidoc'
spec.add_dependency 'mail'
spec.add_dependency 'rack'
spec.add_dependency 'nkf'
spec.add_dependency 'rake'
spec.add_dependency 'thor'
spec.add_dependency 'rexml'
Expand Down

0 comments on commit b07de8d

Please sign in to comment.