Reputation: 879
Hi I am looking to install the win32-service gem in Ruby for Windows, I have tried using the "gem install" command but it doesn't seem to know where to find my gem ;(
I downloaded the gem itself which came with a load of folders but no install instructions.
Is there anyway I can manually install the gem or point IRB in the right direction?
Upvotes: 0
Views: 1405
Reputation: 542
run this command to install gem file manually.
gem install [your gem file]
Upvotes: 1