Tagged Questions
0
votes
1answer
136 views
Ruby undefined method `binwrite' for IO:Class (NoMethodError)
Lately I get a very strange error at the following line of code:
IO.binwrite(attachmentUploadFile, attachmentFileContent)
This is the full error message:
import.rb:326:in `block (3 levels) in ...
1
vote
3answers
1k views
Ruby undefined method `write' for IO:Class (NoMethodError)
when i run my ruby file
ruby test.rb
which has one line:
IO.write("testfile.txt","123")
i get
test.rb:1:in `<main>': undefined method `write' for IO:Class (NoMethodError)