FAQ: update Rails requires for Ruby 1.9.2
commit66e48599b0d98d059862e2eeb64935b0abebc9d0
authorEric Wong <normalperson@yhbt.net>
Mon, 9 Aug 2010 23:14:38 +0000 (9 16:14 -0700)
committerEric Wong <normalperson@yhbt.net>
Mon, 9 Aug 2010 23:17:25 +0000 (9 16:17 -0700)
tree8be38c64573cd977fcfc320d287a42a806c38325
parent62b72b1471705a4ac3aa9ee671f9022bdb556842
FAQ: update Rails requires for Ruby 1.9.2

Ruby 1.9.2 no longer includes '.' inside $LOAD_PATH by default,
so those requires won't work unless we specify the full path.
We prefer File.expand_path to prefixing './' since we want to be
consistent with what Rails itself uses to prevent
double-requires.
FAQ