rake gems:unpack 的逆 rake 操作是什么?
我想解冻之前rake gems:unpack
编辑的宝石。这是什么操作呢?到目前为止我只知道rm -rvendor/gems
的方法。对于rakerails:freeze:edge
有rakerails:unfreeze
。宝石也有这样的逆佣金任务吗?
I would like to unfreeze the gems which where previously rake gems:unpack
ed. What is the operation for this? So far I know only the method of rm -r vendor/gems
. For rake rails:freeze:edge
there is rake rails:unfreeze
. Is there such inverse rake task for gems too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
gems:unpack 没有反函数,但正如您所指出的,您可以自己删除它们。这没有任何问题,因为解包只是复制文件而没有任何进一步的集成。
要确认这一点,您可以运行:
并获取所有 rake 任务的列表。
There is no inverse for gems:unpack, but as you pointed out you can delete them yourself. There's nothing wrong with this, since unpack just copied the files without any further integration.
To confirm this, you can run:
And get a list of all rake tasks.