Douglas Eichelberger

Results 28 issues of Douglas Eichelberger

IIUC, since `ls` is already aliased to include the color flag, there's no need to include `colorflag` in subsequent aliases that invoke `ls`. (Tested on Catalina/Bash v5.0.0 and Ubuntu 19.10/Bash...

## Steps to reproduce `yard doc --list-undoc --compact` ## Actual Output ``` [warn]: Unrecognized/invalid option: --list-undoc [warn]: Unrecognized/invalid option: --compact ``` However, the output includes undocumented nodes in compact fashion....

Analogous to https://github.com/savonrb/savon/commit/39ed9381e8bbc33f91465692d79e16370683472c, with the add'l benefit that it's unused within this gem. (However, it looks like savon has [re-introduced](https://github.com/savonrb/savon/blob/master/lib/savon/qualified_message.rb#L48) a dependency on Object#blank, which I can expunge in a...

As a follow-up to https://github.com/pry/pry/pull/2256 this cleans up more Ruby 1.9 code

**Is your feature request related to a problem? Please describe.** I would like signatures and documentation to co-exist, to make browsing a gem easier **Describe the solution you'd like** I...

enhancement

## Is your feature request related to a problem? Please describe. The `Style/ClassVars` cop doesn't provide much guidance for resolution (as class instance variables are not a drop-in replacement): >...

stale

In the brew [repo](https://github.com/Homebrew/brew), I would like to our non-vendored .rbi files (Sorbet's "Ruby Interface" [files](https://sorbet.org/docs/rbi), written in Ruby) to be covered by RuboCop. However, I just noticed that our...

See https://docs.ruby-lang.org/en/3.3/Etc/Group.html

see https://github.com/ruby/irb/blob/master/lib/irb/init.rb#L50-L61

#### Input [→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20true%0A%0Aclass%20Hash%0A%20%20extend%20T%3A%3ASig%0A%20%20sig%20%7B%20returns%28T.self_type%29%20%7D%0A%20%20def%20compact_blank%0A%20%20%20%20reject%20%7B%20%7C_k%2C%20v%7C%20v%20%7D%20%23%20would%20be%20v.blank%3F%0A%20%20end%0Aend) ```ruby # typed: true class Hash extend T::Sig sig { returns(T.self_type) } def compact_blank reject { |_k, v| v } # would be v.blank?...

bug