Here's a simple bash helper that I've been using to manage my local
project gem repositories. You can add it to your .bash_profile

thorgem() {
  if [ $# = 0 ] #not enough arguments
  then
    echo "Usage: thorgem [install/uninstall/etc..] GEM"
  fi
  thor merb:gem:$1 $2;
}

This enables the "thor merb:gem" task to work similar to the gem
command.

thorgem list
thorgem install GEM
thorgem uninstall GEM

Has been somewhat useful for me. Hope it helps!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"merb" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/merb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to