On Dec 6, 9:20 pm, "ara.t.howard" <ara.t.how... / gmail.com> wrote: > On Dec 6, 2007, at 7:05 PM, MonkeeSage wrote: > > > Ps. Your gemspec needs a dependency on main. > > ooooops. thanks! > > a @http://codeforpeople.com/ > -- > we can deny everything, except that we have the possibility of being > better. simply reflect on that. > h.h. the 14th dalai lama NP. I really like this package, BTW. :) A problem I just ran into is dot-files (e.g., .tesfile). It looks like the glob pattern (constructued on line 115) is the problem. In a directory with .testfile, I get this output: $ ruby -w 'p Dir["./**/**"]' [] $ ruby -e 'p Dir["./.*"]' ["..", ".testfile", "."] But adding a dot to the double star doesn't work correctly (i.e., "./.**/**" get treated as "./../*", doh). I'm not sure there's any easy way to do it with Dir#glob. Regards, Jordan