Installing a rails plugin from a Git repository
git, plugins, ruby-on-rails
Solution
Do you have git installed? If you don't, it will just not work. Rails assumes git is installed and can be found in your PATH.
You can get Git for Windows here.
Problem
I've been trying to install Shoulda ``` script/plugin install git://github.com/thoughtbot/shoulda.git ``` but all I get is: ``` removing: C:/Documents and Settings/Danny/My Documents/Projects/Ruby On Rails/_ProjectName_/vendor/plugins/shoulda/.git > ``` And the `vender/plugins` directory is empty. I have Rails 2.1.1 installed as a gem and have verified that 2.1.1 is loaded (using a puts inserted into config/boot.rb). Any ideas about what's going on? (this is on a windows box)