修改现有的 Rails Gem
我正在使用 MongoMapper 并克隆了存储库。我想开始修改代码,但我是 Rails 新手,不知道如何执行此操作。
I'm playing around with MongoMapper and have cloned the repository. I'd like to start modifying the code but am new to Rails and am not sure how to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 github 存储库 - http://github.com/jnunemaker/mongomapper
您可以提取像这样的源:
git clone http://github.com/jnunemaker/mongomapper.git
它将创建一个包含 gem 源的目录。
重新安装修改后的版本
然后,您可以使用
rake install
You can checkout the github repository - http://github.com/jnunemaker/mongomapper
You can extract the source like this:
git clone http://github.com/jnunemaker/mongomapper.git
Which will create a directory with the gem's source in it.
You can then reinstall your modified version using
rake install