Is there anywhere that there are step by step instructions on how to install gems?
My google-fu is weak and those that I could find did not resolve my error.
My errors are detailed here:
Getting gcal4ruby gem to work
Basically my error sums up as:
gem installs properly and is detectable by,
but whenever I try to reference it in my application it just says:
Could not find ‘gcal4ruby (= 0.0.5, runtime)’ in any of the gem sources Try running ‘bundle install’.
(* I tried bundle install -> no help *)
Your error states:
It’s looking for
0.0.5of gcal4ruby, which you don’t have installed, rather you’re saying yourself that thegem list -dshows:Which is not the correct version. I would recommend attempting to discover what’s trying to require this older version of
gcal4ruby. I think it’s in yourGemfile, but I have been known to be wrong occasionally.If this answer doesn’t solve your question, then please attach the errors you’re getting and your
Gemfileto your question.