Is require File.expand_path(..., __FILE__) the best way to require other files within a project?
|
|
In Ruby 1.9.2 +
You can search here on StackOverflow, particularly in "What is require_relative in Ruby?", and the internets and find usage tricks and the why-for messages explaining how it came about. |
|||||
|
|
Unless you modify The way I've taken to doing it, to ensure things are as cross-platform as possible, is this:
It's a little verbose, but it results in the shortest possible path and the least amount of syntax fluff in most cases. A more specific example would be:
You can combine this with a modification to
|
|||
|
|
|
In Ruby 1.8.x, where you don't have Suppose What you want is You could also get |
||||
|