Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is my project structure:

/app
--/lib
----/porter.rb
--/spec
----/porter_spec.rb

In file porter_spec.rb i have include directive:

require '../lib/porter' 

Now I'm trying to run the test:

cd app
rspec

and get the error:

C:/Ruby193/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- ../lib/porter (LoadError)
        from C:/Ruby193/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
        from C:/Dropbox/development/myprojects/lj-parser/spec/porter_spec.rb:3:in `<top (required)>'

How can I require file on lib folder?

share|improve this question

2 Answers

up vote 3 down vote accepted

Apparently, your current dir is not what you think it is.

You should use require_relative (ruby 1.9+):

require_relative '../lib/porter'
share|improve this answer

In ruby1.9, you can use:

require_relative '../lib/porter'

In ruby1.8 or higher, you can use:

require File.expand_path("../lib/porter", __FILE__)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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