views:

182

answers:

2

Installing rails plugins from github requires git in the system? OS is linux. Is it possible to install plugin without git installation in the local system.

+4  A: 

Sure!

  1. download the plugin from github as *.tar.gz
  2. uncompress and copy it to your vendor/plugins folder
  3. run the install tasks if necassary

Good luck! ;)

Joe
A: 

OR just install git-core on your linux system :)

If using Ubuntu or Debian


 sudo apt-get install git-core

HTH

Rishav Rastogi