Torsten Rüger
Torsten Rüger
Hi, nice work, great to be able to use just what one needs. I started with the gem 0.0.5 , but when trying to use slideIn functions i noticed those...
Hi, and mainly thanks. Banged my head against a wall with capistrano ssh for hours and got mina up in minutes. Great job But then it did take me a...
[ArmTranslator](https://github.com/ruby-x/rubyx/blob/master/lib/arm/translator.rb) translates risc to arm instructions, in an almost one to one way. Due to historical reason, there are very little tests. The good news is that the code works,...
https://github.com/ruby-x/rubyx/blob/master/lib/parfait/word.rb The string (called word to avoid name clashes) implementation is still quite weak. Many even basic methods are missing (see ruby docs). To start with this issue, comment with...
From the Ruby::LogicalStatement class Logical Statements are guaranteed to return boolean either :and or :or, which may be written as && and || Also they guarantee that the right expression...
Currently the way to run all tests, ie test/test_all just runs all "test_*" files under test/ The problem with this approach comes when larger rework starts to break a lot...
https://github.com/ruby-x/rubyx/blob/master/lib/parfait/word.rb Strings are currently limited to i think 20 chars. This is starting to be a problem. The solution is to have "extensions" (better naming welcome). This means when a...
When coding the sort of ssa, the register values are still reused. Meaning when creating instructions possibly from previous instructions, the register are used by references, not copied (by value)....
The ruby layer has very very little error checking, and even less error reporting. Since we have a cli and new users, error handling and messages would be great. This...