0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
A simple invoice creation tool to help you bill your tech clients.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 12.0
~> 3.0

Runtime

= 2.2.2
= 0.20.0
 Project Readme

Invoice Creator

A simple invoice creation tool to help you bill your tech clients.

Sample Invoice

Set up

The codebase has been converted into a Ruby gem so you can just install it with:

  gem install invoice_creator

...and the binary should be available to you globally 🎉

Just make sure to go into the gem's folder and edit the file config.yml so that it's tailored to your needs - define your rate, date format, filename format, etc.

You can do gem open invoice_creator for quick access to the gem's folder.

Usage example

Let's say we want to create an invoice that represents 168 billable hours and has invoice number set to 10:

invoice_creator create 168 --number 10

Now let's say you want to create the same invoice but also need it to include a row with $150 in reimburseable expenses:

invoice_creator create 168 150 --number 10

For help just run:

invoice_creator --help