README.md

# Rails to IANA Timezones

**converts rails US timezones to the iana equivalent which is useful for elixir.**

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:

  1. Add `rails_to_iana_tz` to your list of dependencies in `mix.exs`:

    ```elixir
    def deps do
      [{:rails_to_iana_tz, "~> 0.1.0"}]
    end
    ```

  2. Ensure `rails_to_iana_tz` is started before your application:

    ```elixir
    def application do
      [applications: [:rails_to_iana_tz]]
    end
    ```