up vote 19 down vote favorite
15
share [g+] share [fb]

Following the great advice of Chris Wanstrath, I decided to vendor everything.

However, whenever I run a rake task now I get an error for each of my unpacked gems stating

config.gem: Unpacked gem gemname in vendor/gems has no specification file. Run 'rake gems:refresh_specs' to fix this.

I've done this but no dice. Anyone have the same issue? If so, how do I resolve?

TIA

link|improve this question

I've had this. Unhelpfully, I didn't record what I did and I've forgotten (old age creeping in). Nonetheless, while I try to remember, it might help if you could add some info, like versions of rails, gems, rake, for instance. – Mike Woodhouse Mar 9 '09 at 9:08
Thanks for the reply Mike. However Milan got in there first! Cheers – mr_urf Mar 9 '09 at 10:38
feedback

2 Answers

up vote 26 down vote accepted

I usually go through the following steps:

  1. cd vendor/gems/gemname
  2. gem specification gemname > .specification

Hope it helps.

link|improve this answer
1  
Thanks. Works a charm! – mr_urf Mar 9 '09 at 10:17
see you at SoR by the way ... I'm sure I'm due you a drink by now ;) – mr_urf Mar 9 '09 at 10:41
Hah! That sounds great! Now I understand what is the real benefit of using SO. :D – Milan Novota Mar 9 '09 at 11:34
My God, how do you know this stuff? +1 – Yar Feb 19 '10 at 20:50
NOTE: at least in the gem I did this for today, prawn-core-0.7.2, the gem name was prawn-core. – Yar Mar 4 '10 at 1:16
show 3 more comments
feedback

Another way to solve this problem to generate a spec file in the gems directory: http://digitizor.com/2010/04/03/fix-unpacked-gem-vendor-specification-file-error/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.