Rubygems: OK to have symbolic links in the gem distribution?

I am the author of the gem. Is it good to have symbolic links in gem files or will it break on Windows?

+3


source to share


1 answer


You need to specify the paths completely and not use symbolic links.

If your gems should find files, have a look at these:



 File.join
 Pathname
 the variable __FILE__

      

+2


source







All Articles