Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Declare compatibility with Ruby 3.x in addition to 2.x #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zofrex
Copy link

@zofrex zofrex commented Mar 3, 2021

With this change, I believe this gem works with Ruby 3. All tests pass, and I've tried using the gem with this change with a Rails app under Ruby 3.0.0, and it worked.

@edhowland
Copy link
Owner

Hello,

This looks fine so far, I will probably merge it soon. At the moment, I have not yet installed Ruby 3.0, but plan to do so shortly as I have another project that could use it.

Would you like to be a committer/collab on this project? It was started because as I am a blind developer, I needed some custom output formatting from MiniTest. that I could plug into my custom IDE.
But it has a few other people interested in it as well. If it is useful to you and anyone else, it could use more TLC.

Let me know, Ed

@zofrex
Copy link
Author

zofrex commented Jul 1, 2021

Hi Ed,

I'd be happy to help out if I can, I don't have a huge amount of time available to dedicate to this, but I'd be happy to do some of that TLC that's needed. Let me know what needs working on!

Have you had a chance to take a look at this, by the way? My other dependencies have all resolved their Ruby 3.0 compatibility issues, so it's just this one left for me.

Thanks!

@olimorris
Copy link

Hi @edhowland just wondering if you're planning on maintaining this and bumping it up to Ruby support beyond 3.0. Everything seems to work okay with Ruby 3.1.1.

@thomthom
Copy link

thomthom commented Jul 8, 2024

I could provide a PR with a setup for github actions so it's easy to test against multiple Ruby versions.

@@ -19,7 +19,7 @@ See: https://atom.io. Originally written to interface with the Viper Audible edi
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '~> 2.0'
spec.required_ruby_version = '>= 2.0', '<= 3.0'
Copy link

@thomthom thomthom Jul 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This makes it work with 2.x and 3.0, but not 3.1 or newer.

To include all of 2.x and 3.x we'd need: '>= 2.0', '< 4.0'

@edhowland
Copy link
Owner

edhowland commented Jul 12, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants