从 Winxp 到 Win7 需要重新安装所有 Rails gems?
我已经从 winxp 盒子切换到新的 win7 64 位盒子,我想让我的 Rails 开发项目在上面运行。我可以将我的项目文件夹复制到新盒子中,现在我想将我在 winxp 上使用的所有 gems 迁移到 win7。
我需要在win7上再次“gem install”所有gem吗?或者我可以有一个更简单的方法来做到这一点?请详细说明如何操作。
我想将我的schema.rb迁移到win7上新安装的mysql。怎么办呢?我安装了aptana studio 3,但是rake和generator功能不再可用。
谢谢 炮台
I've switched from a winxp box to a new win7 64bit box and i want to get my rails development project running on it. i can copy my project folder to the new box and now i want to migrate all the gems that i used on my winxp to the win7.
do i need to "gem install" all the gems again on the win7? or i can hv an easier way to do it? pls give details on how to do it.
i want to migrate my schema.rb to the newly installed mysql on the win7. how to do it? i installed aptana studio 3 but the rake and generator functions are no longer available.
thanks
batterhead
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1)你有 Gemfile 吗?如果是这样,只需在项目目录中运行
bundle update
命令即可。2) 在项目目录中运行
rake db:migrate
(假设您已经更新了配置文件)HTH
1) Do you have Gemfile? If so, just run
bundle update
command at your project's directory.2) Run
rake db:migrate
at your project's directory (assuming you already updated a configuration file)HTH