This repository has been archived by the owner on Nov 22, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 245
Kibana ruby on Windows (from scratch)
wiibaa edited this page Aug 30, 2012
·
2 revisions
Here are the steps I followed to have Kibana-ruby running on a Windows 7 environment. Was not so obvious to find out, so should help others :)
You may requires to run Command Line Prompt as Administrator to execute gem install / bundle install commands
Starting from scratch, we need...
From http://rubyinstaller.org/downloads/ fetch and install:
- RubyInstaller Ruby 1.9.3-p194
- DevKit-tdm-32-4.5.2-20111229-1559-sfx.exe
Follow additional configuration for DevKit here https://github.com/oneclick/rubyinstaller/wiki/Development-Kit
Download and 7-zip extract all together (merging folders) the following libs to a folder of your choice named *D:\ruby-extra-libs* as an example here after.
- http://packages.openknapsack.org/zlib/zlib-1.2.6-x86-windows.tar.lzma
- http://packages.openknapsack.org/openssl/openssl-1.0.0g-x86-windows.tar.lzma
- http://packages.openknapsack.org/c-ares/c-ares-1.7.5-x86-windows.tar.lzma
- http://packages.openknapsack.org/libcurl/libcurl-7.24.0-x86-windows.tar.lzma
Update environment variables as follow:
- add **D:\ruby-extra-libs**bin to PATH
Install curb specifying curl dir with forward slashes in the path /
gem install curb -- --with-curl-dir=D:/ruby-extra-libs/
Follow the README