
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = ["test", "tull", "t\U+FFC3\U+FFB8ys"] | |
=> ["test", "tull", "tys"] |
Not really satisfactory. After googling: "os x irb unicode characters rvm" I found the answer on stackoverflow.
Almost.
My adapted solution was this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rvm get latest | |
$ rvm pkg install readline --verify-downloads 1 | |
$ rvm reinstall all --force --verify-downloads 1 |
So now I can do:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = ["test", "tull", "tøys"] | |
=> ["test", "tull", "tøys"] |
Better.
(Not quite sure why the '--verify-downloads 1' part is needed, but it did the trick.)
Comments
Post a Comment