Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
ruby:
- '3.2.0'
- '3.3.6'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
ruby:
- '3.2.0'
- '3.3.6'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
ruby:
- '3.2.0'
- '3.3.6'
services:
redis:
image: redis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
ruby:
- '3.2.0'
- '3.3.6'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.3.6
4 changes: 2 additions & 2 deletions redis-single-file.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/lifeBCE/redis-single-file'
spec.license = 'MIT'

# Build Requiremenrs
# Build Requirements
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.2.0'

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

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