require 'ownlan/application' require 'ownlan/config.rb' require 'ownlan/cli' require 'ownlan/exceptions' require 'ownlan/attack/base.rb' require 'ownlan/attack/client.rb' require 'ownlan/attack/fake_ip_conflict.rb' require 'ownlan/attack/gateway.rb' require 'ownlan/attack/ntoa.rb' require 'ownlan/manual/capture.rb' require 'ownlan/manual/broadcast.rb' require 'ownlan/protect/freeze.rb' require 'ownlan/protect/resynchronize.rb' require 'ownlan/protect/static.rb' require 'ownlan/protect/stealth.rb' require 'ownlan/service_objects/craft_arp_packets' require 'ownlan/service_objects/send_arp_packets' require 'ownlan/service_objects/network_information' require 'active_support/inflector' require 'thread' require 'trollop' require 'pry' require 'packetfu' module Ownlan class << self attr_reader :application def new(opts) @application = Ownlan::Application.new(opts) end def call application.call end end end