class Spior::Options
Attributes
install[R]
persist[R]
tor[R]
Public Class Methods
new(argv)
click to toggle source
# File lib/spior/options.rb, line 7 def initialize(argv) @install = false @tor = false @persist = false parse(argv) end
Private Instance Methods
parse(argv)
click to toggle source
# File lib/spior/options.rb, line 16 def parse(argv) OptionParser.new do |opts| opts.on("-i", "--install", "Check and install dependencies") do @install = true end opts.on("-t", "--tor", "Redirect traffic through TOR") do @tor = true end opts.on("-r", "--reload", "Reload TOR to change your ip") do Spior::Tor.restart exit end opts.on("-c", "--clearnet", "Reset iptables and return to clearnet navigation") do Spior::Clear.all end opts.on("-s", "--status", "Look infos about your current ip") do Spior::Status.info exit end opts.on("-p", "--persist", "Active Spior at every boot.") do @persist = true end opts.on("-m", "--menu", "Display an interactive menu") do Spior::Menu.run end opts.on("-h", "--help", "Show this message") do puts opts exit end begin argv = ["-m"] if argv.empty? opts.parse!(argv) rescue OptionParser::ParseError => e STDERR.puts e.message, "\n", opts exit(-1) end end end