├── .gitignore ├── README.md ├── data └── currencies │ ├── aed.json │ ├── afn.json │ ├── all.json │ ├── amd.json │ ├── ang.json │ ├── aoa.json │ ├── ars.json │ ├── aud.json │ ├── awg.json │ ├── azn.json │ ├── bam.json │ ├── bbd.json │ ├── bdt.json │ ├── bgn.json │ ├── bhd.json │ ├── bif.json │ ├── bmd.json │ ├── bnd.json │ ├── bob.json │ ├── brl.json │ ├── bsd.json │ ├── btn.json │ ├── bwp.json │ ├── byn.json │ ├── byr.json │ ├── bzd.json │ ├── cad.json │ ├── cdf.json │ ├── chf.json │ ├── clf.json │ ├── clp.json │ ├── cny.json │ ├── cop.json │ ├── crc.json │ ├── cuc.json │ ├── cup.json │ ├── cve.json │ ├── czk.json │ ├── djf.json │ ├── dkk.json │ ├── dop.json │ ├── dzd.json │ ├── egp.json │ ├── ern.json │ ├── etb.json │ ├── eur.json │ ├── fjd.json │ ├── fkp.json │ ├── gbp.json │ ├── gel.json │ ├── ghs.json │ ├── gip.json │ ├── gmd.json │ ├── gnf.json │ ├── gtq.json │ ├── gyd.json │ ├── hkd.json │ ├── hnl.json │ ├── hrk.json │ ├── htg.json │ ├── huf.json │ ├── idr.json │ ├── ils.json │ ├── inr.json │ ├── iqd.json │ ├── irr.json │ ├── isk.json │ ├── jmd.json │ ├── jod.json │ ├── jpy.json │ ├── kes.json │ ├── kgs.json │ ├── khr.json │ ├── kmf.json │ ├── kpw.json │ ├── krw.json │ ├── kwd.json │ ├── kyd.json │ ├── kzt.json │ ├── lak.json │ ├── lbp.json │ ├── lkr.json │ ├── lrd.json │ ├── lsl.json │ ├── ltl.json │ ├── lvl.json │ ├── lyd.json │ ├── mad.json │ ├── mdl.json │ ├── mga.json │ ├── mkd.json │ ├── mmk.json │ ├── mnt.json │ ├── mop.json │ ├── mro.json │ ├── mur.json │ ├── mvr.json │ ├── mwk.json │ ├── mxn.json │ ├── myr.json │ ├── mzn.json │ ├── nad.json │ ├── ngn.json │ ├── nio.json │ ├── nok.json │ ├── npr.json │ ├── nzd.json │ ├── omr.json │ ├── pab.json │ ├── pen.json │ ├── pgk.json │ ├── php.json │ ├── pkr.json │ ├── pln.json │ ├── pyg.json │ ├── qar.json │ ├── ron.json │ ├── rsd.json │ ├── rub.json │ ├── rwf.json │ ├── sar.json │ ├── sbd.json │ ├── scr.json │ ├── sdg.json │ ├── sek.json │ ├── sgd.json │ ├── shp.json │ ├── skk.json │ ├── sll.json │ ├── sos.json │ ├── srd.json │ ├── ssp.json │ ├── std.json │ ├── svc.json │ ├── syp.json │ ├── szl.json │ ├── thb.json │ ├── tjs.json │ ├── tmt.json │ ├── tnd.json │ ├── top.json │ ├── try.json │ ├── ttd.json │ ├── twd.json │ ├── tzs.json │ ├── uah.json │ ├── ugx.json │ ├── usd.json │ ├── uyu.json │ ├── uzs.json │ ├── vef.json │ ├── vnd.json │ ├── vuv.json │ ├── wst.json │ ├── xaf.json │ ├── xag.json │ ├── xau.json │ ├── xba.json │ ├── xbb.json │ ├── xbc.json │ ├── xbd.json │ ├── xcd.json │ ├── xdr.json │ ├── xof.json │ ├── xpd.json │ ├── xpf.json │ ├── xpt.json │ ├── xts.json │ ├── yer.json │ ├── zar.json │ ├── zmk.json │ └── zmw.json ├── shard.yml ├── spec ├── moola │ ├── currency_spec.cr │ ├── exchange_spec.cr │ └── money_spec.cr ├── moola_spec.cr └── spec_helper.cr └── src ├── moola.cr └── moola ├── currency.cr ├── exchange.cr └── money.cr /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/README.md -------------------------------------------------------------------------------- /data/currencies/aed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/aed.json -------------------------------------------------------------------------------- /data/currencies/afn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/afn.json -------------------------------------------------------------------------------- /data/currencies/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/all.json -------------------------------------------------------------------------------- /data/currencies/amd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/amd.json -------------------------------------------------------------------------------- /data/currencies/ang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ang.json -------------------------------------------------------------------------------- /data/currencies/aoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/aoa.json -------------------------------------------------------------------------------- /data/currencies/ars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ars.json -------------------------------------------------------------------------------- /data/currencies/aud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/aud.json -------------------------------------------------------------------------------- /data/currencies/awg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/awg.json -------------------------------------------------------------------------------- /data/currencies/azn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/azn.json -------------------------------------------------------------------------------- /data/currencies/bam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bam.json -------------------------------------------------------------------------------- /data/currencies/bbd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bbd.json -------------------------------------------------------------------------------- /data/currencies/bdt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bdt.json -------------------------------------------------------------------------------- /data/currencies/bgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bgn.json -------------------------------------------------------------------------------- /data/currencies/bhd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bhd.json -------------------------------------------------------------------------------- /data/currencies/bif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bif.json -------------------------------------------------------------------------------- /data/currencies/bmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bmd.json -------------------------------------------------------------------------------- /data/currencies/bnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bnd.json -------------------------------------------------------------------------------- /data/currencies/bob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bob.json -------------------------------------------------------------------------------- /data/currencies/brl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/brl.json -------------------------------------------------------------------------------- /data/currencies/bsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bsd.json -------------------------------------------------------------------------------- /data/currencies/btn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/btn.json -------------------------------------------------------------------------------- /data/currencies/bwp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bwp.json -------------------------------------------------------------------------------- /data/currencies/byn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/byn.json -------------------------------------------------------------------------------- /data/currencies/byr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/byr.json -------------------------------------------------------------------------------- /data/currencies/bzd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/bzd.json -------------------------------------------------------------------------------- /data/currencies/cad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cad.json -------------------------------------------------------------------------------- /data/currencies/cdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cdf.json -------------------------------------------------------------------------------- /data/currencies/chf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/chf.json -------------------------------------------------------------------------------- /data/currencies/clf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/clf.json -------------------------------------------------------------------------------- /data/currencies/clp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/clp.json -------------------------------------------------------------------------------- /data/currencies/cny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cny.json -------------------------------------------------------------------------------- /data/currencies/cop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cop.json -------------------------------------------------------------------------------- /data/currencies/crc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/crc.json -------------------------------------------------------------------------------- /data/currencies/cuc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cuc.json -------------------------------------------------------------------------------- /data/currencies/cup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cup.json -------------------------------------------------------------------------------- /data/currencies/cve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/cve.json -------------------------------------------------------------------------------- /data/currencies/czk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/czk.json -------------------------------------------------------------------------------- /data/currencies/djf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/djf.json -------------------------------------------------------------------------------- /data/currencies/dkk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/dkk.json -------------------------------------------------------------------------------- /data/currencies/dop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/dop.json -------------------------------------------------------------------------------- /data/currencies/dzd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/dzd.json -------------------------------------------------------------------------------- /data/currencies/egp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/egp.json -------------------------------------------------------------------------------- /data/currencies/ern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ern.json -------------------------------------------------------------------------------- /data/currencies/etb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/etb.json -------------------------------------------------------------------------------- /data/currencies/eur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/eur.json -------------------------------------------------------------------------------- /data/currencies/fjd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/fjd.json -------------------------------------------------------------------------------- /data/currencies/fkp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/fkp.json -------------------------------------------------------------------------------- /data/currencies/gbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gbp.json -------------------------------------------------------------------------------- /data/currencies/gel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gel.json -------------------------------------------------------------------------------- /data/currencies/ghs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ghs.json -------------------------------------------------------------------------------- /data/currencies/gip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gip.json -------------------------------------------------------------------------------- /data/currencies/gmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gmd.json -------------------------------------------------------------------------------- /data/currencies/gnf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gnf.json -------------------------------------------------------------------------------- /data/currencies/gtq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gtq.json -------------------------------------------------------------------------------- /data/currencies/gyd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/gyd.json -------------------------------------------------------------------------------- /data/currencies/hkd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/hkd.json -------------------------------------------------------------------------------- /data/currencies/hnl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/hnl.json -------------------------------------------------------------------------------- /data/currencies/hrk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/hrk.json -------------------------------------------------------------------------------- /data/currencies/htg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/htg.json -------------------------------------------------------------------------------- /data/currencies/huf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/huf.json -------------------------------------------------------------------------------- /data/currencies/idr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/idr.json -------------------------------------------------------------------------------- /data/currencies/ils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ils.json -------------------------------------------------------------------------------- /data/currencies/inr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/inr.json -------------------------------------------------------------------------------- /data/currencies/iqd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/iqd.json -------------------------------------------------------------------------------- /data/currencies/irr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/irr.json -------------------------------------------------------------------------------- /data/currencies/isk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/isk.json -------------------------------------------------------------------------------- /data/currencies/jmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/jmd.json -------------------------------------------------------------------------------- /data/currencies/jod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/jod.json -------------------------------------------------------------------------------- /data/currencies/jpy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/jpy.json -------------------------------------------------------------------------------- /data/currencies/kes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kes.json -------------------------------------------------------------------------------- /data/currencies/kgs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kgs.json -------------------------------------------------------------------------------- /data/currencies/khr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/khr.json -------------------------------------------------------------------------------- /data/currencies/kmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kmf.json -------------------------------------------------------------------------------- /data/currencies/kpw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kpw.json -------------------------------------------------------------------------------- /data/currencies/krw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/krw.json -------------------------------------------------------------------------------- /data/currencies/kwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kwd.json -------------------------------------------------------------------------------- /data/currencies/kyd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kyd.json -------------------------------------------------------------------------------- /data/currencies/kzt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/kzt.json -------------------------------------------------------------------------------- /data/currencies/lak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lak.json -------------------------------------------------------------------------------- /data/currencies/lbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lbp.json -------------------------------------------------------------------------------- /data/currencies/lkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lkr.json -------------------------------------------------------------------------------- /data/currencies/lrd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lrd.json -------------------------------------------------------------------------------- /data/currencies/lsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lsl.json -------------------------------------------------------------------------------- /data/currencies/ltl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ltl.json -------------------------------------------------------------------------------- /data/currencies/lvl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lvl.json -------------------------------------------------------------------------------- /data/currencies/lyd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/lyd.json -------------------------------------------------------------------------------- /data/currencies/mad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mad.json -------------------------------------------------------------------------------- /data/currencies/mdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mdl.json -------------------------------------------------------------------------------- /data/currencies/mga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mga.json -------------------------------------------------------------------------------- /data/currencies/mkd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mkd.json -------------------------------------------------------------------------------- /data/currencies/mmk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mmk.json -------------------------------------------------------------------------------- /data/currencies/mnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mnt.json -------------------------------------------------------------------------------- /data/currencies/mop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mop.json -------------------------------------------------------------------------------- /data/currencies/mro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mro.json -------------------------------------------------------------------------------- /data/currencies/mur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mur.json -------------------------------------------------------------------------------- /data/currencies/mvr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mvr.json -------------------------------------------------------------------------------- /data/currencies/mwk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mwk.json -------------------------------------------------------------------------------- /data/currencies/mxn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mxn.json -------------------------------------------------------------------------------- /data/currencies/myr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/myr.json -------------------------------------------------------------------------------- /data/currencies/mzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/mzn.json -------------------------------------------------------------------------------- /data/currencies/nad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/nad.json -------------------------------------------------------------------------------- /data/currencies/ngn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ngn.json -------------------------------------------------------------------------------- /data/currencies/nio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/nio.json -------------------------------------------------------------------------------- /data/currencies/nok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/nok.json -------------------------------------------------------------------------------- /data/currencies/npr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/npr.json -------------------------------------------------------------------------------- /data/currencies/nzd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/nzd.json -------------------------------------------------------------------------------- /data/currencies/omr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/omr.json -------------------------------------------------------------------------------- /data/currencies/pab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/pab.json -------------------------------------------------------------------------------- /data/currencies/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/pen.json -------------------------------------------------------------------------------- /data/currencies/pgk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/pgk.json -------------------------------------------------------------------------------- /data/currencies/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/php.json -------------------------------------------------------------------------------- /data/currencies/pkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/pkr.json -------------------------------------------------------------------------------- /data/currencies/pln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/pln.json -------------------------------------------------------------------------------- /data/currencies/pyg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/pyg.json -------------------------------------------------------------------------------- /data/currencies/qar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/qar.json -------------------------------------------------------------------------------- /data/currencies/ron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ron.json -------------------------------------------------------------------------------- /data/currencies/rsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/rsd.json -------------------------------------------------------------------------------- /data/currencies/rub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/rub.json -------------------------------------------------------------------------------- /data/currencies/rwf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/rwf.json -------------------------------------------------------------------------------- /data/currencies/sar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sar.json -------------------------------------------------------------------------------- /data/currencies/sbd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sbd.json -------------------------------------------------------------------------------- /data/currencies/scr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/scr.json -------------------------------------------------------------------------------- /data/currencies/sdg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sdg.json -------------------------------------------------------------------------------- /data/currencies/sek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sek.json -------------------------------------------------------------------------------- /data/currencies/sgd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sgd.json -------------------------------------------------------------------------------- /data/currencies/shp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/shp.json -------------------------------------------------------------------------------- /data/currencies/skk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/skk.json -------------------------------------------------------------------------------- /data/currencies/sll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sll.json -------------------------------------------------------------------------------- /data/currencies/sos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/sos.json -------------------------------------------------------------------------------- /data/currencies/srd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/srd.json -------------------------------------------------------------------------------- /data/currencies/ssp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ssp.json -------------------------------------------------------------------------------- /data/currencies/std.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/std.json -------------------------------------------------------------------------------- /data/currencies/svc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/svc.json -------------------------------------------------------------------------------- /data/currencies/syp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/syp.json -------------------------------------------------------------------------------- /data/currencies/szl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/szl.json -------------------------------------------------------------------------------- /data/currencies/thb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/thb.json -------------------------------------------------------------------------------- /data/currencies/tjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/tjs.json -------------------------------------------------------------------------------- /data/currencies/tmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/tmt.json -------------------------------------------------------------------------------- /data/currencies/tnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/tnd.json -------------------------------------------------------------------------------- /data/currencies/top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/top.json -------------------------------------------------------------------------------- /data/currencies/try.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/try.json -------------------------------------------------------------------------------- /data/currencies/ttd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ttd.json -------------------------------------------------------------------------------- /data/currencies/twd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/twd.json -------------------------------------------------------------------------------- /data/currencies/tzs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/tzs.json -------------------------------------------------------------------------------- /data/currencies/uah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/uah.json -------------------------------------------------------------------------------- /data/currencies/ugx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/ugx.json -------------------------------------------------------------------------------- /data/currencies/usd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/usd.json -------------------------------------------------------------------------------- /data/currencies/uyu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/uyu.json -------------------------------------------------------------------------------- /data/currencies/uzs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/uzs.json -------------------------------------------------------------------------------- /data/currencies/vef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/vef.json -------------------------------------------------------------------------------- /data/currencies/vnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/vnd.json -------------------------------------------------------------------------------- /data/currencies/vuv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/vuv.json -------------------------------------------------------------------------------- /data/currencies/wst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/wst.json -------------------------------------------------------------------------------- /data/currencies/xaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xaf.json -------------------------------------------------------------------------------- /data/currencies/xag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xag.json -------------------------------------------------------------------------------- /data/currencies/xau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xau.json -------------------------------------------------------------------------------- /data/currencies/xba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xba.json -------------------------------------------------------------------------------- /data/currencies/xbb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xbb.json -------------------------------------------------------------------------------- /data/currencies/xbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xbc.json -------------------------------------------------------------------------------- /data/currencies/xbd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xbd.json -------------------------------------------------------------------------------- /data/currencies/xcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xcd.json -------------------------------------------------------------------------------- /data/currencies/xdr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xdr.json -------------------------------------------------------------------------------- /data/currencies/xof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xof.json -------------------------------------------------------------------------------- /data/currencies/xpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xpd.json -------------------------------------------------------------------------------- /data/currencies/xpf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xpf.json -------------------------------------------------------------------------------- /data/currencies/xpt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xpt.json -------------------------------------------------------------------------------- /data/currencies/xts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/xts.json -------------------------------------------------------------------------------- /data/currencies/yer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/yer.json -------------------------------------------------------------------------------- /data/currencies/zar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/zar.json -------------------------------------------------------------------------------- /data/currencies/zmk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/zmk.json -------------------------------------------------------------------------------- /data/currencies/zmw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/data/currencies/zmw.json -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/moola/currency_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/spec/moola/currency_spec.cr -------------------------------------------------------------------------------- /spec/moola/exchange_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/spec/moola/exchange_spec.cr -------------------------------------------------------------------------------- /spec/moola/money_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/spec/moola/money_spec.cr -------------------------------------------------------------------------------- /spec/moola_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/spec/moola_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/moola.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/src/moola.cr -------------------------------------------------------------------------------- /src/moola/currency.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/src/moola/currency.cr -------------------------------------------------------------------------------- /src/moola/exchange.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/src/moola/exchange.cr -------------------------------------------------------------------------------- /src/moola/money.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorkrawk/moola/HEAD/src/moola/money.cr --------------------------------------------------------------------------------