Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 RoR 的新手,我不知道如何卸载 gem。我安装了一个我不想要的设计版本。我已经运行了迁移和 devise_install,所以想知道我是否只需要删除我的应用程序中的文件,然后运行 gem 删除,我不知道该怎么做。
在您的 Gemfile 中,您应该能够设置要升级到的设计版本:
gem 'devise', '~> x.x.x'
然后运行bundle update devise以更新您的 rails repo 中的 gem。
bundle update devise
您应该能够重新运行rake generate devise:install,它将再次创建必要的文件。任何冲突都将打印到控制台,您可以删除必要的文件并再次重新运行任务。
rake generate devise:install