UncleSam is a program written in Ruby to make it really simple to calculate US taxes for US Form: 1040.
- Accepts the tax payer's net income and filing status.
- We apply the standard deductions which will to determine the tax payer's taxable income.
- We apply the personal tax exemptions which is subject to phase outs to the remaining taxable income.
- We determine which Federal tax bracket the tax payer is in by accepting the tax payer's taxable income & filing status as input.
Add this line to your application's Gemfile:
gem 'uncle_sam'
And then execute:
$ bundle
Or install it yourself as:
$ gem install uncle_sam
TODO: Write usage instructions here
- Fork it ( https://github.com/PatrickMa/uncle_sam/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request