Postmodern
Postmodern
If you're interested, there's an old [rop](https://github.com/ronin-ruby/ronin-asm/tree/rop/lib/ronin/asm/rop) branch. I was trying to extract it and update it for a Capture The Flag competition. One of my goals is to add...
One problem with using GitHub Flavored Markdown on Ronin repositories is [YARD](https://yardoc.org/) which we use for [documentation](https://ronin-rb.dev/docs/) does not yet support using [kramdown-parser-gfm](https://github.com/kramdown/parser-gfm#readme) to parse GitHub Flavored Markdown, so the...
I avoided using redcarpet because it uses C extensions, which aren't supported on JRuby. Where as kramdown is pure-ruby and will work on any ruby implementation. I suppose you could...
Closing this as the README now has GitHub Flavored Markdown syntax highlighting.
I am not a Arch user, so I do not know what the current preferred way is to install non-core packages. Feel free to submit a PR with the current...
It might be possible to check if `vendor/bundle` exists and add the `$ruby/$ruby_api_version/bin` directory to `PATH`. However, like you pointed out, you might not want all executables to automatically use...
Interesting idea. I guess it could show that `Digest::CRC*` isn't any slower than `Digest::MD5`, etc, which are implemented by `libssl`. Although, I would wager the CRC algorithms will be faster...
@eregon as for the default behavior in 1.0.0, how would it handle rubies installed in `/opt/rubies` (or elsewhere) where the ruby's gem installation directory is not writable by the user?...
> I would suggest no_gem_vars.sh/no_gem_env.sh, that seems clear and IMO avoids confusion the best. @eregon I like `no_gem_env.sh`, or `no_gem_home.sh`, or even `no_user_gem.sh`.
Since you're adding a new function, I would technically need to merge this into the [0.4.0](https://github.com/postmodern/chruby/tree/0.4.0) branch.