How can I install from github?
I watched github and found interesting for me -> https://github.com/cavneb/Surveyor
How can开发者_如何学编程 I install for my own and using it? I don't understand it, when i doing script/plugin install git. And it appears in my vendor/plugins, and what now? How i can see it?
The Surveyor repository isn't a plugin, it's a full rails application. So your steps are
- cd Projects (or whatever)
- git clone https://github.com/cavneb/Surveyor.git
- cd Surveyor
- rake gems:install
- rake db:create
- rake db:migrate
- script/server
精彩评论