module Seedog

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/seedog.rb, line 18
def config
  @config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/seedog.rb, line 22
def configure
  yield config
end
dry_run() click to toggle source
# File lib/seedog.rb, line 13
def dry_run
  evaluator = Evaluator.new(config, dry_run: true)
  evaluator.run
end
run() click to toggle source
# File lib/seedog.rb, line 8
def run
  evaluator = Evaluator.new(config)
  evaluator.run
end