Skip to content

Commit dd2efd2

Browse files
committed
Add ruby 3.4 to matrix.
1 parent 0e91834 commit dd2efd2

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/rspec.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
ruby: ["3.1", "3.2", "3.3", head]
23+
ruby: ["3.1", "3.2", "3.3", "3.4", head]
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Set up Ruby
2727
uses: ruby/setup-ruby@v1
2828
with:
2929
ruby-version: ${{ matrix.ruby }}
30-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30+
# runs 'bundle install' and caches installed gems automatically
31+
bundler-cache: true
3132
- name: Run specs
3233
run: bundle exec rspec

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ end
88

99
group :development, :test do
1010
gem "rake"
11-
gem "rspec", ">= 3"
11+
gem "rspec"
1212
gem "tilt"
1313
end

spec/org-ruby/line_regexp_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DummyRegexp
4646
expect(regexp.footnote_definition).not_to match "\t[fn:label]"
4747
end
4848
it { expect(regexp.footnote_definition).to match '[fn:label] contents' }
49-
it 'caputre :label' do
49+
it 'capture :label' do
5050
match = regexp.footnote_definition.match('[fn:la-be_l]')
5151
expect(match[:label]).to eq 'la-be_l'
5252
expect(match[:contents]).to eq ''

0 commit comments

Comments
 (0)