Sameer Deshmukh
Sameer Deshmukh
Getting the names of the gems that use a given gem and the version number of the gem that the dependents use is useful information for gem writers. It would...
In ipython it is possible to paste an entire method into the console and go up/down and edit the method as per your needs, and then load the method into...
This goes wrong. Which it should not. ``` class String def blank?(str string) char *s = string int i = 0 while i < string.size do return false if s[i]...
Rubex was written in a bit of hurry, so parts of the code base are quite messy. Identify these smelly parts and refactor them with better design. Refer to Martin...
Most new features in Rubex are not well documented yet. Here's list: - [x] CLI interface (being looked at by @shaunakpp). - [x] Releasing the GIL. - [ ] Constant...
Various methods for catching errors exist in compilers. Document best approaches for doing so in this issue and tackle the following problems in error reporting: - [ ] Print location...
For example, the `deallocate` function for attached classes must not take in arguments and must be of return type `void`. Similar constraints exist for the others as well. These must...
Rubex should support single line if-else with `? :` operator and it should directly compile into C `? :`.
General checklist of things to setup: - [x] Travis CI for linux and macOS - [ ] Gitter - [x] Rubygems version - [ ] Code Climate - [ ]...