Lalit (owner)

Fork Of

gist: 72782 by stephen... http://stephencelis.com/200...

Revisions

gist: 75067 Download_button fork
public
Public Clone URL: git://gist.github.com/75067.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
10
11
# ~/.bash_profile
 
export GEMDIR=`gem env gemdir`
 
gemdoc() {
  local gems=($GEMDIR/doc/$1*/rdoc/index.html)
  open ${gems[@]: -1}
}
 
complete -W '$(`which ls` $GEMDIR/doc)' gemdoc