views:

60

answers:

1

I would like to unfreeze the gems which where previously rake gems:unpacked. 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?

A: 

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:

rake -T

And get a list of all rake tasks.

Jaime Bellmyer
thanks, you confirmed there is nothing bad than with the rm vendor/gems
fifigyuri