Fix text sent as input to rufo#21
Conversation
|
It still breaks with code containing var2 = \
case var1
endRemoving the |
|
I've added a commit to remove the escaping, since |
splattael
left a comment
There was a problem hiding this comment.
@13k Thank again!
I have trouble to make @blasterpal's code from #17 to work.
This code still give an error - even with your patch:
Code
module JIRA
class Client
def find!(*args)
begin
self.find(*args)
rescue JIRA::HTTPError
puts "Object not found"
nil
end
end
end
endResult
@13k Any ideas?
|
Could you, please, recheck #12? |
|
@lucerion It looks correct: My reasoning here is, essentially, that the correct approach is to always send the unmodified input to I tried to research a way to avoid |



The text being sent to
rufois incorrectly formed with lines joined by the actual characters\n, instead of an actual single-char newline.This fixes #17 and fixes #18.