This repository was archived by the owner on Mar 10, 2026. It is now read-only.
Conversation
Contributor
johha
commented
Feb 18, 2026
- Add github workflows for unit tests and release
- Adjust docs
- Bump ruby to v3.2
- Bump dependencies
- Configure dependabot
33c398d to
974947b
Compare
- Add GitHub Actions workflows for CI and automated releases - Add Dependabot configuration for dependency updates - Add RELEASING.md with release process documentation - Add CHANGELOG.md following Keep a Changelog format - Configure CI to test Ruby 2.7-3.3
- Fix all RuboCop violations (Style, Layout, Lint) - Use argument forwarding shorthand (...) for Ruby 3.0+ - Freeze constants for immutability - Remove redundant require statements - Use safe navigation operator where appropriate - Replace string concatenation with interpolation - Use RSpec predicate matchers - Update .rubocop_todo.yml (reduced from 477 to 388 offenses) - Bump Ruby version to 3.2 in .ruby-version
- Drop Ruby 2.7 support, require Ruby 3.0+ - Add Ruby 3.4 to CI test matrix - Add syslog and syslog-logger dependencies for Ruby 3.4+ compatibility (both gems removed from standard library in Ruby 3.4) - Configure CI with fail-fast: false to test all Ruby versions independently - Update development dependencies (RuboCop 1.60+, RSpec 3.13) - Add rubygems_mfa_required metadata for security - Update CHANGELOG with all changes
The syslog-logger gem hasn't been updated since 2014 and is unnecessary. The steno syslog sink only used it as a thin wrapper around the base syslog gem. Refactored to use syslog directly: - Use Syslog.open() directly instead of Syslog::Logger.new() - Update tests to use Syslog.close if Syslog.opened? - Remove syslog-logger from dependencies - Update CHANGELOG to reflect removal This reduces dependencies and removes reliance on an unmaintained gem while maintaining identical functionality.
- Remove rack-test development dependency (not used anywhere in tests) - Add explicit 'require time' for Time#iso8601 (Ruby 3.4+) - Add explicit 'require tmpdir' for Dir.mktmpdir in tests (Ruby 3.4+) These standard library features were previously loaded transitively through rack-test's dependency on rack, but are not auto-loaded in Ruby 3.4+.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.