Sha256: c917de63e7bd95b95582109f00ee86855efdbd664842a661ce025061f3199dc2

Contents?: true

Size: 288 Bytes

Versions: 8

Compression:

Stored size: 288 Bytes

Contents

# frozen_string_literal: true

require 'axr/scanner'

module AxR
  class Scanner
    class Detection
      attr_reader :name, :loc, :loc_num

      def initialize(name:, loc:, loc_num:)
        @name    = name
        @loc     = loc
        @loc_num = loc_num
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
axr-0.8.1 lib/axr/scanner/detection.rb
axr-0.8.0 lib/axr/scanner/detection.rb
axr-0.7.2 lib/axr/scanner/detection.rb
axr-0.7.1 lib/axr/scanner/detection.rb
axr-0.6.2 lib/axr/scanner/detection.rb
axr-0.6.1 lib/axr/scanner/detection.rb
axr-0.6.0 lib/axr/scanner/detection.rb
axr-0.5.0 lib/axr/scanner/detection.rb