Project

prettytodo

0.01
The project is in a healthy, maintained state
T O D O: make pretty notes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 7.0.0
 Project Readme

🌸 Pretty Todo 🌸

A Rails engine that transforms your code annotations into an organized, visual interface. Built on top of bin/rails notes, Pretty Todo makes managing your code todos a delightful experience :)

Screenshot 2025-04-16 at 8 28 12 PM

Features

  • Visual interface for your code annotations
  • Supports standard tags: TODO, OPTIMIZE, FIXME
  • Customizable tag support
  • Development-only mounting for security

Installation

  1. Add to your application's Gemfile:
gem "prettytodo"
  1. Mount the engine in your config/routes.rb:
mount Prettytodo::Engine => '/prettytodo' if Rails.env.development?

Configuration

Add custom annotation tags in config/application.rb:

config.annotations.register_tags('HACK', 'REVIEW')

Usage

  1. Add annotations to your code using standard Rails comment format:
# TODO: Refactor this method
# FIXME: Handle edge case
# OPTIMIZE: Improve performance
  1. Visit /prettytodo in your development environment to see your annotations in a beautiful interface.

License

This project is licensed under the MIT License.