0.0
No release in over 3 years
This gem provides an ActiveRecord interface to Calibre's book database
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 7.0, < 9
>= 2.0, < 3
 Project Readme

Calibre-RubyT

ActiveRecord for Calibre's book database!

A fork of calibre-ruby, very useful library last. Because it was last released in 2018 and with source code behind a registration wall that doesn't accept @gmail emails.

Usage

Install:

gem install calibre-rubyt

Open database:

require 'calibre'

Calibre.db = '/path/to/metadata.db'

Work with models:

# Get all books
Calibre::Book.all

# Get book authors
Calibre::Book.find(1).authors

# Get book files
Calibre::Book.find(1).data.map(&:path)

# Get book cover
Calibre::Book.find(1).cover