command_name
8 9 10 11 12 13 14
# File 'lib/jun/cli/commands/db/seed.rb', line 8 def process(*args) seed_filepath = Jun.root.join("db/seed.rb") abort("No seed file found.") unless File.exist?(seed_filepath) load seed_filepath puts "Seeding complete." end