Closed
Description
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
Metadata
Metadata
Assignees
Labels
No labels