module R7
Constants
- VERSION
Public Class Methods
get_argv()
click to toggle source
Returns an array of command-line arguments, including quotation marks used to encapulate arguments with spaces.
# File lib/argv.rb, line 3 def self.get_argv argv = ARGV argv.each_index { |i| argv[i] = "'#{argv[i]}'" if argv[i].include?(" ") } end