Reputation: 19353
I'm having a hard time installing the AppFog client Ruby Gem on my development machine. In particular to tunnel
capability which requires Caldecott
.
Here is what I have done so far,
gem update --system
gem install af
This works ok for the af login
etc.
eventmachine
from GitHub and patched and installed as described heregem install caldecott --platform=ruby
This all works fine with no complaints from the Gem system, however now when I run the AppFog client I still get,
C:\Ruby200-x64\bin>gem install caldecott --platform=ruby Successfully installed caldecott-0.0.5 Parsing documentation for caldecott-0.0.5 1 gem installed
C:\Ruby200-x64\bin>af tunnel [WARNING] DL is deprecated, please use Fiddle To use `af tunnel', you must first install Caldecott:
gem install caldecott
Note that you'll need a C compiler. If you're on OS X, Xcode will provide one. If you're on Windows, try DevKit.
This manual step will be removed in the future.
Error: Caldecott is not installed.
C:\Ruby200-x64\bin>
i.e. the install doesn't recognise caldecott
. What am I doing wrong?
Upvotes: 3
Views: 1108
Reputation: 184
It says, you must intall Devkit : http://rubyinstaller.org/downloads/ It's for the C compiler
Upvotes: 0