Runs seed files.
It is not recommended to use this class directly. Instead, use {SeedFu.seed SeedFu.seed}, which creates an instead of {Runner} and calls {run run}.
@see SeedFu.seed SeedFu.seed
@param [Array<String>] fixture_paths The paths where fixtures are located. Will use
`SeedFu.fixture_paths` if {nil}. If the argument is not an array, it will be wrapped by one.
@param [Regexp] filter If given, only seed files with a file name matching this pattern will
be used
# File lib/seed-fu/runner.rb, line 16 def initialize(fixture_paths = nil, filter = nil) @fixture_paths = Array.wrap(fixture_paths || SeedFu.fixture_paths) @filter = filter end
Generated with the Darkfish Rdoc Generator 2.