├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── shard.yml ├── spec ├── finance_spec.cr └── spec_helper.cr └── src ├── financials.cr └── financials ├── fv.cr ├── nper.cr ├── pmt.cr ├── pv.cr ├── rate.cr └── version.cr /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: crystal 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/finance_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/spec/finance_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/financials.cr: -------------------------------------------------------------------------------- 1 | require "./financials/*" -------------------------------------------------------------------------------- /src/financials/fv.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/src/financials/fv.cr -------------------------------------------------------------------------------- /src/financials/nper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/src/financials/nper.cr -------------------------------------------------------------------------------- /src/financials/pmt.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/src/financials/pmt.cr -------------------------------------------------------------------------------- /src/financials/pv.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/src/financials/pv.cr -------------------------------------------------------------------------------- /src/financials/rate.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drum445/financials/HEAD/src/financials/rate.cr -------------------------------------------------------------------------------- /src/financials/version.cr: -------------------------------------------------------------------------------- 1 | module Financials 2 | VERSION = "0.1.0" 3 | end 4 | --------------------------------------------------------------------------------