Postmodern
Postmodern
The reason why I avoided adding support for Italic is it's apparently not widely supported and some terminals incorrectly interpret it as inverted or blink? https://en.wikipedia.org/wiki/ANSI_escape_code#Select_Graphic_Rendition_parameters
@javierjulio hmm of the listed terminals that do not support italic, `rxvt`, `mate-terminal`, `xfce-terminal`, and `PuTTY` are still somewhat popular. At least most all of the other popular terminals are...
This appears to be an upstream bug. It appears that `Bundler::LockfileParser` will happily parse non-lockfiles. ```ruby Bundler::LockfileParser.new(File.read('README.md')) => # ``` We could check if the file extension is `.lock` and...
This however raises the question, how would the user accidentally confuse `README.md` for a `Gemfile.lock` file? I agree `bundler-audit` should print some kind of error message, but what scenario would...
I particularly need `#getch` to step through the string if `#scan` does not match the current position.
I am porting this code to Crystal which walks a string attempt to match a series of regexes at each index, and if one of them matches wraps the matching...
@HertzDevil ah clever and now the specs pass. Thank you! I still think StringScanner should support more of Ruby's StringScanner to make porting to Crystal easier. `getch`, `get_byte`, `match*` methods...
Could you try updating XCode Command-Line Utils? There are many results on Google indicating that this compiler error is due to an outdated version of XCode Command-Line Utils.
Ah, we need to load `dependencies.sh` even if `--no-install-deps` is given. I've created a branch with a possible fix: d2eca2f1bd562845016b1aa10af38ff8f5553d7c
@javierjulio there are a few edge-cases with default commands you should be aware of before submitting a PR. 1. What happens when no subcommand is given, but options are given...