This is specifically about running gemstash in development, but I'm able to do things like bin/gemstash start, but bin/gemstash or anything that would do help usage fails like:
❯ bin/gemstash
Could not find command "readme".
This is the only place I can find readme mentioned:
|
command ||= "readme" |
|
page = manpage(command) |
|
|
|
if page && which("man") |
|
exec "man", page |
|
elsif page |
|
puts File.read("#{page}.txt") |
|
else |
|
super |
|
end |
This is specifically about running gemstash in development, but I'm able to do things like
bin/gemstash start, butbin/gemstashor anything that would do help usage fails like:This is the only place I can find readme mentioned:
gemstash/lib/gemstash/cli.rb
Lines 40 to 49 in e0e1b4b