Problem installing rails-3 plugins (Win7)

I am new to ruby, I spent a couple of hours trying to find a way to install the plugin ... but without any success, so I'm very upset ... please help.

OS: W7 ruby: ruby ​​1.9.2 rails: 3.0.5 msysgit: 1.7.4 (I did not change anything, just installed) (is there anything else I should mention?)

ruby script/plugin install git://github.com/thoughtbot/paperclip.git/ C:\Ruby\Ruby192\bin\ruby.exe: Permission denied -- script/plugin (LoadError) 

Thanks!

+4
source share
1 answer

The script/plugin command (and all other script/<exec> commands) are no longer used in Rails 3, instead you should:

 rails plugin install git://github.com/thoughtbot/paperclip.git 
+6
source

Source: https://habr.com/ru/post/1345393/


All Articles