Sha256: 0eb2c5d7e98685b501d1206dcc1a8de7037d9daa9fcf3fd0adc8b2e8617e2f8d

Contents?: true

Size: 662 Bytes

Versions: 5

Compression:

Stored size: 662 Bytes

Contents

# frozen_string_literal: true

module PWN
  # This file, using the autoload directive loads SP reports
  # into memory only when they're needed. For more information, see:
  # http://www.rubyinside.com/ruby-techniques-revealed-autoload-1652.html
  module Reports
    # autoload :HTML, 'pwn/reports/html'
    # autoload :JSON, 'pwn/reports/json'
    # autoload :PDF, 'pwn/reports/pdf'
    autoload :Fuzz, 'pwn/reports/fuzz'
    autoload :Phone, 'pwn/reports/phone'
    autoload :SAST, 'pwn/reports/sast'
    # autoload :XML, 'pwn/reports/xml'

    # Display a List of Every PWN Report

    public_class_method def self.help
      constants.sort
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pwn-0.4.519 lib/pwn/reports.rb
pwn-0.4.518 lib/pwn/reports.rb
pwn-0.4.517 lib/pwn/reports.rb
pwn-0.4.516 lib/pwn/reports.rb
pwn-0.4.515 lib/pwn/reports.rb