AnkiPackage
represents the Anki deck package file which has the .apkg file extension
This is a zip file containing two SQLite databases (collection.anki21 and collection.anki2), a media file, and possibly the media (images and sound files). The gem currently does not have any support for adding or changing media in the Anki package.
Methods
Class Public methods
create(name:, target_directory: Dir.pwd, &closure) Link
Creates a new Anki package file (see the README)
Source: show
# File lib/anki_record/anki_package/anki_package.rb, line 25 def self.create(name:, target_directory: Dir.pwd, &closure) anki_package = new anki_package.create_initialize(name:, target_directory:, &closure) anki_package end