├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── config ├── config.exs ├── dev.exs └── test.exs ├── lib ├── mix │ ├── mix_utils.ex │ └── tasks │ │ └── whatwasit.install.ex ├── whatwasit.ex └── whatwasit │ └── utils.ex ├── mix.exs ├── mix.lock ├── priv └── templates │ └── whatwasit.install │ └── models │ └── whatwasit │ ├── version.ex │ └── version_map.ex └── test ├── mix └── tasks │ └── whatwasit.install_test.exs ├── mix_helpers.exs ├── schema_test.exs ├── support ├── migrations.exs ├── model_case.exs ├── repo.exs ├── schema.exs └── test_helpers.exs ├── test_helper.exs └── utils_test.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /doc 2 | /_build 3 | /cover 4 | /deps 5 | erl_crash.dump 6 | *.ez 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- 1 | use Mix.Config 2 | -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/config/test.exs -------------------------------------------------------------------------------- /lib/mix/mix_utils.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/lib/mix/mix_utils.ex -------------------------------------------------------------------------------- /lib/mix/tasks/whatwasit.install.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/lib/mix/tasks/whatwasit.install.ex -------------------------------------------------------------------------------- /lib/whatwasit.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/lib/whatwasit.ex -------------------------------------------------------------------------------- /lib/whatwasit/utils.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/lib/whatwasit/utils.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/mix.lock -------------------------------------------------------------------------------- /priv/templates/whatwasit.install/models/whatwasit/version.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/priv/templates/whatwasit.install/models/whatwasit/version.ex -------------------------------------------------------------------------------- /priv/templates/whatwasit.install/models/whatwasit/version_map.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/priv/templates/whatwasit.install/models/whatwasit/version_map.ex -------------------------------------------------------------------------------- /test/mix/tasks/whatwasit.install_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/mix/tasks/whatwasit.install_test.exs -------------------------------------------------------------------------------- /test/mix_helpers.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/mix_helpers.exs -------------------------------------------------------------------------------- /test/schema_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/schema_test.exs -------------------------------------------------------------------------------- /test/support/migrations.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/support/migrations.exs -------------------------------------------------------------------------------- /test/support/model_case.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/support/model_case.exs -------------------------------------------------------------------------------- /test/support/repo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/support/repo.exs -------------------------------------------------------------------------------- /test/support/schema.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/support/schema.exs -------------------------------------------------------------------------------- /test/support/test_helpers.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/support/test_helpers.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/test_helper.exs -------------------------------------------------------------------------------- /test/utils_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smpallen99/whatwasit/HEAD/test/utils_test.exs --------------------------------------------------------------------------------