-
Notifications
You must be signed in to change notification settings - Fork 24
Enable early return for Ruby 4.1+ again #101
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -10,6 +10,8 @@ | |||||||||||||||||
| # For documentation, see class Pathname. | ||||||||||||||||||
| # | ||||||||||||||||||
|
|
||||||||||||||||||
| return if RUBY_VERSION >= '4.1' | ||||||||||||||||||
|
|
||||||||||||||||||
| unless RUBY_VERSION >= '4' | ||||||||||||||||||
|
Comment on lines
+13
to
15
|
||||||||||||||||||
| return if RUBY_VERSION >= '4.1' | |
| unless RUBY_VERSION >= '4' | |
| ruby_version = RUBY_VERSION.split('.').map(&:to_i) | |
| return if ruby_version >= [4, 1] | |
| unless ruby_version >= [4] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
returnat the top level of a required file is a syntax error in Ruby (invalid return in top-level context), so this change will preventlib/pathname.rbfrom loading on all Ruby versions. If you need to skip the rest of the file for Ruby >= 4.1, wrap the remainder of the file in a conditional (if/unless) rather than usingreturn.