Sha256: 5cb2864ed5524af7e47dde270eb564113779f1d51b1cf9308f727fdc72b8cd1d
Contents?: true
Size: 434 Bytes
Versions: 1
Compression:
Stored size: 434 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' lib_dir = File.expand_path(File.join(File.dirname(__FILE__),'..','lib')) unless $LOAD_PATH.include?(lib_dir) $LOAD_PATH << lib_dir end require 'ronin/ui/command_line/commands/gen' require 'ronin/ui/command_line' if (ARGV.length > 0 && ARGV.first[0..0] != '-') ARGV[0] = "gen_#{ARGV.first}" Ronin::UI::CommandLine.run(*ARGV) else Ronin::UI::CommandLine::Commands::Gen.run(*ARGV) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ronin-gen-0.1.1 | bin/ronin-gen |