2

Does anyone know the command to install win32ole for ruby. gem install win32ole does not work

I am trying to get require 'win32ole' to work

thedarkknight228
  • 535
  • 1
  • 5
  • 9

1 Answers1

4

win32ole is a gem for exposing the internal API for the Windows operating system. Ruby on Windows is a great blog that utilizes the gem to automate many Windows applications.

However, due to the fact that the gem relies heavily on exposing the Windows API (hence the name of the gem), the gem is not available on any other operating system but Windows.

Charles Caldwell
  • 16,649
  • 4
  • 40
  • 47