├── .formatter.exs ├── .gitignore ├── .shipit.exs ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── lib └── mix │ └── tasks │ └── shipit.ex ├── mix.exs └── mix.lock /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/.gitignore -------------------------------------------------------------------------------- /.shipit.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/.shipit.exs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/README.md -------------------------------------------------------------------------------- /lib/mix/tasks/shipit.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/lib/mix/tasks/shipit.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtekmach/shipit/HEAD/mix.lock --------------------------------------------------------------------------------