├── .formatter.exs ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── config └── config.exs ├── lib └── ecto_function.ex ├── mix.exs └── test ├── ecto_function_test.exs ├── support └── migration.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/ecto_function.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/lib/ecto_function.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/mix.exs -------------------------------------------------------------------------------- /test/ecto_function_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/test/ecto_function_test.exs -------------------------------------------------------------------------------- /test/support/migration.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/test/support/migration.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauleth/ecto_function/HEAD/test/test_helper.exs --------------------------------------------------------------------------------