From: Klaus Stein Date: 2010-09-27T18:55:18+09:00 Subject: Re: Contributing to a gem on github Josh Cheek wrote: > Hi, there is a gem I want to use (bones-extras), but the part I want to use > doesn't work on 1.9.2 since they removed "." from the path (extremely > irritating, btw). > > On my system, I can fix it, by editing the source to add "." to the > beginning of the file path, [...] You should _not_ use this fix, at least not for a public gem (as you are not only responsible for your own system). There are (security) issues with having the current directory in the load path and . is removed with intent. Use require_relative or something similar to fix the gem. I appreciate that you want to help the community, go on with that. Klaus -- http://lapiz.istik.de/ The Answer is 42. And I am the Answer. Now I am looking for the Question.