vote up 1 vote down star

I'm trying to use the Optiflag package in my Ruby code and whenever I try to do the necessary require optiflag.rb, my program fails with the standard no such file to load -- optiflag message. I added the directory with that library to my $PATH variable, but it's still not working. Any ideas?

flag

2 Answers

vote up 4 vote down check

is it a gem? Are you doing

require 'rubygems'
require 'optiflag'

or equivalent?

link|flag
Arg, I keep forgetting about that! Much thanks! – Chris Bunch Sep 10 '08 at 2:05
vote up 2 vote down

It looks like it's a gem, so you need to enable ruby gems before requiring it.

This site explains many ways of how to do it. But to have the cheat sheet here these are:

1) Require the rubygems package before using a gem.

require "rubygems"
require "optiflag" # etc

2) Add the -rubygems flag to wherever you execute ruby. I.e:

ruby -rubygems Something.rb

3) Add an environment variable called RUBYOPT, giving it an option of rubygems. I.e:

RUBYOPT=rubygems
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.