我正在运行Windows 7 32位。我刚刚安装了Ruby 1.9.2和Rails 3.0.1。我设置了rails示例应用程序,一切似乎都运行正常。我尝试从github安装restful_authentication
插件,这是一场噩梦。我正在执行以下命令:
rails plugin install -force git://github.com/technoweenie/restful-authentication.git
...我得到以下错误:
Cannot install using checkout because this project is not under subversion.
我如何解决这个问题?我已经安装了SVN和Git命令行客户端,它们都在我的PATH中。
答案 0 :(得分:1)
是的,你不应该在Rails 3中使用这个插件。使用设计。
答案 1 :(得分:0)
根据installation notes你需要简单地将项目克隆到插件目录。
git clone git://github.com/technoweenie/restful-authentication.git restful_authentication
正如其他人所说,devise是更好的选择。