0.0
No commit activity in last 3 years
No release in over 3 years
A simple static generator for reading lists.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
>= 0
~> 10.0
~> 3.0
~> 0.47.1
>= 0

Runtime

~> 1.0
>= 2.1.2, ~> 2.1
 Project Readme

reading_list

A static site generator for your reading list.

Installation

$ gem install reading_list

Usage

To generate your reading list website, you'll need two files: a YAML config file and a JSON book file.

The Config file

The basic structure of the config file looks like this:

name: YOUR_NAME
email: YOUR_EMAIL

book_file: PATH_TO_BOOK_FILE

output:
  dir: OUTPUT_DIRECTORY
  theme: default
Key Value
name Your name. Displayed in the header of the generated site.
email (Currently unused) Your email address.
website (Currently unused) Your website.
book_file The relative path to your book file.
output/dir The relative path to the output directory. The generated HTML and CSS files will be written there. Caution: Any existing HTML and CSS output will be overwritten.
output/theme The name of the theme for your site. The only supported value (at least for now) is default.

All of the values are required.

The Book file

The book file is a JSON file containing an array of JSON objects. The structure looks like this:

[
  {
    "title": "The Lion, the Witch, and the Wardrobe",
    "author": "C. S. Lewis",
    "year": 2017,
    "link": "https://www.amazon.com/Lion-Witch-Wardrobe-Chronicles-Narnia/dp/0064404994/"
  },

  {
    // etc
  }
]
Key Type Value
title string The title of the book
author string The author of the book
year int The year you read the book (not the year it was published)
link string (Optional) A link to the book's website or Amazon page. If provided, the book's title will be a link to this URL in the output.

Running the generator

To generate your site, run the following command, passing in the relative path to your config file:

reading_list -c [CONFIG_FILE]

Run reading_list -h for help.

Sample output

See reading.joshtompkins.com for a sample site running the default theme.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jtompkins/reading_list.