Skip to content

Commit 81ac6fc

Browse files
committed
Minor updates
1 parent ce0961a commit 81ac6fc

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
ruby:
16-
- '2.5'
17-
- '2.6'
18-
- '2.7'
19-
- '3.0'
16+
- '3.1'
17+
- '3.2'
18+
- '3.3'
2019
- ruby-head
2120
continue-on-error: ${{ matrix.ruby == 'ruby-head' }}
2221
services:
@@ -29,7 +28,7 @@ jobs:
2928
ports:
3029
- 6379:6379
3130
steps:
32-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3332
- uses: ruby/setup-ruby@v1
3433
with:
3534
ruby-version: ${{ matrix.ruby }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Suo [![Build Status](https://github.com/nickelser/suo/workflows/CI/badge.svg)](https://github.com/nickelser/suo/actions?query=workflow%3ACI) [![Code Climate](https://codeclimate.com/github/nickelser/suo/badges/gpa.svg)](https://codeclimate.com/github/nickelser/suo) [![Gem Version](https://badge.fury.io/rb/suo.svg)](http://badge.fury.io/rb/suo)
1+
# Suo [![Build Status](https://github.com/instacart/suo/workflows/CI/badge.svg)](https://github.com/instacart/suo/actions?query=workflow%3ACI) [![Gem Version](https://badge.fury.io/rb/suo.svg)](http://badge.fury.io/rb/suo)
22

33
:lock: Distributed semaphores using Memcached or Redis in Ruby.
44

@@ -86,13 +86,13 @@ A key representing a set of lockable resources is removed once the last resource
8686

8787
## History
8888

89-
View the [changelog](https://github.com/nickelser/suo/blob/master/CHANGELOG.md).
89+
View the [changelog](https://github.com/instacart/suo/blob/master/CHANGELOG.md).
9090

9191
## Contributing
9292

9393
Everyone is encouraged to help improve this project. Here are a few ways you can help:
9494

95-
- [Report bugs](https://github.com/nickelser/suo/issues)
96-
- Fix bugs and [submit pull requests](https://github.com/nickelser/suo/pulls)
95+
- [Report bugs](https://github.com/instacart/suo/issues)
96+
- Fix bugs and [submit pull requests](https://github.com/instacart/suo/pulls)
9797
- Write, clarify, or fix documentation
9898
- Suggest or add new features

suo.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ Gem::Specification.new do |spec|
1111

1212
spec.summary = %q(Distributed locks (mutexes & semaphores) using Memcached or Redis.)
1313
spec.description = %q(Distributed locks (mutexes & semaphores) using Memcached or Redis.)
14-
spec.homepage = "https://github.com/nickelser/suo"
14+
spec.homepage = "https://github.com/instacart/suo"
1515
spec.license = "MIT"
1616

1717
spec.files = `git ls-files -z`.split("\x0")
1818
spec.bindir = "bin"
1919
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
2020
spec.require_paths = ["lib"]
2121

22-
spec.required_ruby_version = ">= 2.5"
22+
spec.required_ruby_version = ">= 3.1"
2323

2424
spec.add_dependency "dalli"
2525
spec.add_dependency "redis"
2626
spec.add_dependency "msgpack"
2727

2828
spec.add_development_dependency "bundler"
2929
spec.add_development_dependency "rake", "~> 13.0"
30-
spec.add_development_dependency "rubocop", "~> 0.49.0"
31-
spec.add_development_dependency "minitest", "~> 5.5.0"
30+
spec.add_development_dependency "rubocop", "~> 1.68.0"
31+
spec.add_development_dependency "minitest", "~> 5.25"
3232
spec.add_development_dependency "codeclimate-test-reporter", "~> 0.4.7"
3333
end

0 commit comments

Comments
 (0)