Skip to content

Instantly share code, notes, and snippets.

@ksaa
Created February 17, 2012 03:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksaa/1850299 to your computer and use it in GitHub Desktop.
Save ksaa/1850299 to your computer and use it in GitHub Desktop.
Rails Girls love check
echo -e "\n- - - - - - - - - \n"
echo -e "Now we are going to print some information to check that everything is done:\n"
echo -n " ,;;;, ,;;;, Should be brew 0.8 or higher: brew "
brew -v
echo -n " ;;;' ';' ';;; Should be sqlite 3.7.3 or higher: sqlite "
sqlite3 --version
echo -n " ;;; ;;; Should be rvm 1.6.32 or higher: "
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-10
echo -n " ';;, ,;;' Should be ruby 1.9.2p290: "
ruby -v | cut -c 1-14
echo -n " ';;,;;' Should be Rails 3.1.0: "
rails -v
echo -e " ';'"
echo -e "\n- - - - - - - - - \n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment