Skip to content

Commit f4cd341

Browse files
authored
.ruby-version at 3.3.6 and bumped workflows (#7)
1 parent dc97469 commit f4cd341

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
ruby:
12-
- '3.2.0'
12+
- '3.3.6'
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: ruby/setup-ruby@v1

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
ruby:
12-
- '3.2.0'
12+
- '3.3.6'
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: ruby/setup-ruby@v1

.github/workflows/rspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
ruby:
12-
- '3.2.0'
12+
- '3.3.6'
1313
services:
1414
redis:
1515
image: redis

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
ruby:
12-
- '3.2.0'
12+
- '3.3.6'
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: ruby/setup-ruby@v1

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3.6

redis-single-file.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ Gem::Specification.new do |spec|
1313
spec.homepage = 'https://github.com/lifeBCE/redis-single-file'
1414
spec.license = 'MIT'
1515

16-
# Build Requiremenrs
16+
# Build Requirements
1717
spec.require_paths = ['lib']
1818
spec.required_ruby_version = '>= 3.2.0'
1919

20+
# Resource Location Configuration
2021
spec.metadata['homepage_uri'] = spec.homepage
2122
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
2223
spec.metadata['changelog_uri'] = 'https://github.com/lifeBCE/redis-single-file/blob/main/CHANGELOG.md'
@@ -27,7 +28,6 @@ Gem::Specification.new do |spec|
2728

2829
# NOTE: Grabs list of files to include in gem from git. New files/directories
2930
# will not be picked up until running 'git add' prior to building gem.
30-
#
3131
spec.files =
3232
IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
3333
# reject self and rejected paths defined above

0 commit comments

Comments
 (0)