Sha256: c45973f9eff0d31747390aa6b1921a21854a1c2e83315a7360489ce81cf5315e
Contents?: true
Size: 506 Bytes
Versions: 32
Compression:
Stored size: 506 Bytes
Contents
module Dradis::Plugins::Import class Result attr_accessor :description, :id, :tags, :title def initialize(args={}) @description = args[:description] || "The Import plugin didn't provide a :description for this result." @id = args[:id] || "The Import plugin didn't provide an :id for this result." @tags = args[:tags] || [] @title = args[:title] || "The Import plugin didn't provide a :title for this result." end end end
Version data entries
32 entries across 32 versions & 1 rubygems