class TurboRex::Fuzzer::Seed
Attributes
seed[R]
Public Class Methods
from_file(path, separator="\n")
click to toggle source
# File lib/turborex/fuzzer/seed.rb, line 14 def self.from_file(path, separator="\n") File.read(path).split(separator).map {|s| new(s)} end
new(seed)
click to toggle source
# File lib/turborex/fuzzer/seed.rb, line 6 def initialize(seed) @seed = seed end
Public Instance Methods
container=(c)
click to toggle source
# File lib/turborex/fuzzer/seed.rb, line 10 def container=(c) end