We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
private_class_method
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
input.rb
class A private_class_method def self.foo puts 'hello, world!' end end
output.rb
class A private_class_method def self.foo puts "hello, world!" end end
diff
--- input.rb 2022-03-24 14:26:09.669225408 -0700 +++ output.rb 2022-03-24 14:26:22.145203738 -0700 @@ -1,5 +1,5 @@ class A private_class_method def self.foo - puts 'hello, world!' - end + puts "hello, world!" + end end
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
input.rb
output.rb
diff
The text was updated successfully, but these errors were encountered: