Project

sum

0.01
No commit activity in last 3 years
No release in over 3 years
A simple budgeting app built on Sinatra
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 0.4.4
= 0.3.5
= 2.2.14
= 1.2.17
= 1.0.1
= 0.5.3
= 1.2.9
= 0.1.0
= 0.4
= 0.9.4
= 0.6.0
= 0.4.0
 Project Readme

Sum

A budgeting app built on Sinatra. Use it at sumapp.com.

Compatibility

Sum is actively maintained under Ruby 1.9.1.

The flow

Fill out a form containing your total monthly bills, income, and desired savings. When you use your credit card or the ATM, send an email to sum@sumapp.com with the dollar amount. Every midnight, you will receive an email with budgeting metrics for the day.

Take a look at the read email feature to see example budget email scenarios.

Development setup

Install the sum gem for its dependencies:

sudo gem install sum --source http://gemcutter.org

Fork the Sum repository on GitHub.

git clone git@github.com:YOUR_NAME/sum.git
cd sum

Copy and edit the example config files:

cp config/database.example.yml config/database.yml
cp config/mail.example.yml config/mail.yml
mate config/database.yml config/mail.yml

Create and migrate your database:

rake db:create db:migrate

Start the application with shotgun:

shotgun

Architecture

The application consists of a simple form that updates the user table and a non-public-facing action that doubles as a background job. The background action is designed to be curled by cron every minute. It handles email and time-sensitive user updates.

Running the test suite

Sum uses Cucumber, Webrat, and email-spec for functional tests and rspec for unit tests:

cucumber
spec .