A budgeting app built on Sinatra. Use it at sumapp.com.
Sum is actively maintained under Ruby 1.9.1.
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.
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
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 curl
ed by cron every minute. It handles email and time-sensitive user updates.
Sum uses Cucumber, Webrat, and email-spec for functional tests and rspec for unit tests:
cucumber spec .