command_name
8 9 10 11 12 13
# File 'lib/jun/cli/commands/db/drop.rb', line 8 def process(*args) db_filepath = Jun.root.join("db/app.db") File.delete(db_filepath) if File.exist?(db_filepath) puts "Dropped database." end