aussiegeek (owner)

Revisions

gist: 116446 Download_button fork
public
Public Clone URL: git://gist.github.com/116446.git
gemdocs.sh
1
2
3
4
5
6
7
8
9
10
11
12
export GEMDIR=`gem env gemdir`
 
gemdoc() {
  open $GEMDIR/doc/`$(which ls) $GEMDIR/doc | grep $1 | sort | tail -1`/rdoc/index.html
}
 
_gemdocomplete() {
  COMPREPLY=($(compgen -W '$(`which ls` $GEMDIR/doc)' -- ${COMP_WORDS[COMP_CWORD]}))
  return 0
}
 
complete -o default -o nospace -F _gemdocomplete gemdoc