├── .formatter.exs ├── .github ├── FUNDING.yml └── workflows │ └── checks.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── decimal_env.ex └── decimal_env │ └── operators.ex ├── mix.exs ├── mix.lock └── test ├── decimal_env └── operators_test.exs ├── decimal_env_test.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [alexdesousa] 2 | -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/README.md -------------------------------------------------------------------------------- /lib/decimal_env.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/lib/decimal_env.ex -------------------------------------------------------------------------------- /lib/decimal_env/operators.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/lib/decimal_env/operators.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/mix.lock -------------------------------------------------------------------------------- /test/decimal_env/operators_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/test/decimal_env/operators_test.exs -------------------------------------------------------------------------------- /test/decimal_env_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmtprime/decimal_env/HEAD/test/decimal_env_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------