Skip to content

Commit ce87420

Browse files
authored
[Ruby] Update CI (#185)
* Update ruby CI * Update release CI * Update gemspec to strip out test files * Add changelog
1 parent 6918a04 commit ce87420

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

.github/workflows/release-rubygem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: ruby/setup-ruby@v1
1515
with:
16-
ruby-version: '3.2'
16+
ruby-version: '3.4'
1717
bundler-cache: true
1818
- uses: cucumber/[email protected]
1919
with:

.github/workflows/test-ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
matrix:
1818
os:
1919
- ubuntu-latest
20-
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
20+
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
2121
include:
2222
- os: windows-latest
23-
ruby: '3.2'
23+
ruby: '3.3'
2424
- os: macos-latest
25-
ruby: '3.2'
25+
ruby: '3.3'
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: ruby/setup-ruby@v1

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
9+
### Added
10+
- [Ruby] Support the testing in CI on later rubies ([#185](https://github.com/cucumber/tag-expressions/pull/185))
911

1012
## [6.1.1] - 2024-10-28
1113
### Changed

ruby/cucumber-tag-expressions.gemspec

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,11 @@ Gem::Specification.new do |s|
2323
'source_code_uri' => 'https://github.com/cucumber/tag-expressions/tree/main/ruby'
2424
}
2525

26-
s.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
26+
s.add_development_dependency 'rake', '~> 13.1'
2727
s.add_development_dependency 'rspec', '~> 3.11'
2828
s.add_development_dependency 'rubocop', '~> 0.79.0'
2929

30-
s.files = Dir[
31-
'README.md',
32-
'LICENSE',
33-
'lib/**/*'
34-
]
35-
s.test_files = Dir['spec/**/*']
30+
s.files = Dir['README.md', 'LICENSE', 'lib/**/*']
3631
s.rdoc_options = ['--charset=UTF-8']
3732
s.require_path = 'lib'
3833
end

0 commit comments

Comments
 (0)