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.
示例:“在测试/虚拟环境中销售 Rails 应用程序”“在生产环境中销售 Rails 的推荐方式是什么?”
供应商是将所有 3rd 方项目(如插件、gem 甚至 rails)移动到/vendor目录中。这是确保将所有文件部署到与开发环境相同的生产服务器的一种方法。
/vendor
最好的方法是:
rake gems:unpack
或者
rake rails:freeze:gems
用于rake -T查看 rake 任务的完整列表。
rake -T