timriley (owner)

Revisions

gist: 74757 Download_button fork
public
Public Clone URL: git://gist.github.com/74757.git
Embed All Files: show embed
bash console function for rails and sinatra.sh #
1
2
3
4
5
6
7
8
9
10
11
12
function sc {
  if [ -x script/console ]; then
script/console
  else
sinatra_rb=`egrep -l "^require.+sinatra.$" *.rb 2>/dev/null`
    if [ -e $sinatra_rb ]; then
irb -r $sinatra_rb
    else
irb
    fi
fi
}