README.md
# Crontab
[](https://raw.githubusercontent.com/jshmrtn/crontab/master/LICENSE)
[](https://travis-ci.org/jshmrtn/crontab)
[](https://hex.pm/packages/crontab)
[](https://inch-ci.org/github/jshmrtn/crontab)
[](https://coveralls.io/github/jshmrtn/crontab?branch=master)
Parse Cron Format Strings, Write Cron Format Strings and Calculate Execution Dates.
## Installation
1. Add `crontab` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:crontab, "~> 1.1.2"}]
end
```
2. Ensure `crontab` is started before your application:
```elixir
def application do
[applications: [:crontab]]
end
```
## Usage
Please look into the [Documentation](https://hexdocs.pm/crontab/) for usage examples.