I'm developing a gem and it creates files in a tmp/ directory. The problem is, when users use my gem. And when the gem tries to store tmp files it issues a permission problem. I wonder how I can solve this without the user need to chown/chmod the tmp folder or run as sudo?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Can you use the Ruby Tempfile class? http://www.ruby-doc.org/stdlib-1.9.3/libdoc/tempfile/rdoc/Tempfile.html |
|||
|
|
|
Simple workaround (for unix systems) - use |
|||
|
