Tagged Questions
7
votes
5answers
5k views
How do you specify a required switch (not argument) with Ruby OptionParser?
Say I'm writing a script and I want to require a --host switch (with value of course) but if the --host switch isn't specified I want the option parsing to fail. I can't seem to figure out how to do ...
0
votes
1answer
56 views
Can I allow a ruby script read access to a file but not the user invoking the script?
I have installed a ruby script (script.rb) on a Linux system that 'requires' another file (required.rb) with a bunch of custom methods.
I do not want to let my users read required.rb.
If i remove ...