Brandon Weaver
Brandon Weaver
Likely cause - https://github.com/cesarferreira/gito/blob/master/lib/gito.rb#L15
OptParse will strip flags out already: ```ruby require 'optparse' puts "Before: #{ARGV}" options = {} OptionParser.new do |opts| opts.on('-e') { options[:editor] = true } opts.on('-t') { options[:temp] = true }...
Side topic: I've found a few additional areas where we might get some easy wins if you're up to spot check me on some more PRs later @byroot.
Fair fair. I might ask @nobu, @hsbt, or @nurse if they'd be up to work with me on that as well. Going to go back through some of the memory...
Would one of @nobu / @hsbt / @nurse be up to take a look at this?
Absolutely fair, it's a bit involved to do. Thanks for the reply!
More of the approach I was using wasn't really a great one, so I was waiting for inspiration on how to approach it differently. I might try something along the...
I could, but that would also come at the cost of speed
True, but send is still slow.
```ruby send method vs native ===================== Send result: 8 Native result: 8 Warming up -------------------------------------- Send 89.094k i/100ms Native 118.006k i/100ms Calculating ------------------------------------- Send 1.180M (± 7.0%) i/s - 5.880M...