Class: TurboRex::Fuzzer::SeedGroup
- Inherits:
-
Object
- Object
- TurboRex::Fuzzer::SeedGroup
- Defined in:
- lib/turborex/fuzzer/seed.rb
Instance Attribute Summary collapse
-
#energy ⇒ Object
Returns the value of attribute energy.
-
#seeds ⇒ Object
readonly
Returns the value of attribute seeds.
Instance Method Summary collapse
-
#initialize(seeds, energy) ⇒ SeedGroup
constructor
A new instance of SeedGroup.
Constructor Details
#initialize(seeds, energy) ⇒ SeedGroup
Returns a new instance of SeedGroup.
23 24 25 26 |
# File 'lib/turborex/fuzzer/seed.rb', line 23 def initialize(seeds, energy) @seeds = seeds @energy = energy end |
Instance Attribute Details
#energy ⇒ Object
Returns the value of attribute energy.
21 22 23 |
# File 'lib/turborex/fuzzer/seed.rb', line 21 def energy @energy end |
#seeds ⇒ Object (readonly)
Returns the value of attribute seeds.
20 21 22 |
# File 'lib/turborex/fuzzer/seed.rb', line 20 def seeds @seeds end |