TheNewbie
TheNewbie

Reputation: 564

cannot install rails plugins

My problem is: ruby script/plugin is not working (I don't see any HTTP traffic, nor an error message or something) What can be failing? Did I forget to setup something?

My progress so far (using Windows XP):

I'll probably have to do something about that git thingie next, but the fact that plugin discover is doing nothing makes me suspect something else is broken here? The web proxy access is working OK for the gems, and I don't see any HTTP requests being made from plugin discover...

Upvotes: 1

Views: 388

Answers (1)

shingara
shingara

Reputation: 46914

You can't install plugin by git if you have no git command. But git is not compatible in DOS console. You need use MsysGit

You can install plugin by download the plugin from github and extract all source in your /vendor/plugins directory. All directory in this path are load by plugin

Upvotes: 1

Related Questions