# Phoenix Ratchet
[![Build Status][travis-img]][travis] [![Hex Version][hex-img]][hex]
[travis-img]: https://travis-ci.org/iamvery/phoenix_ratchet.svg?branch=master
[travis]: https://travis-ci.org/iamvery/phoenix_ratchet
[hex-img]: https://img.shields.io/hexpm/v/phoenix_ratchet.svg
[hex]: https://hex.pm/packages/phoenix_ratchet
A [Phoenix][phoenix] template engine for [Ratchet][ratchet].
View the [Documentation][docs].
## Usage
1. Install with Hex:
```elixir
def deps do
[{:phoenix_ratchet, "~> 0.4"}]
end
```
1. Configure Phoenix in `config/config.exs` to use the Ratchet engine:
```elixir
config :phoenix, :template_engines,
ratchet: Ratchet.Phoenix.Engine
```
1. Configure Phoenix in `config/dev.exs` to live reload Ratchet templates:
```diff
config :blurg, Blurg.Endpoint,
live_reload: [
patterns: [
~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
~r{priv/gettext/.*(po)$},
~r{web/views/.*(ex)$},
- ~r{web/templates/.*eex$}
+ ~r{web/templates/.*(eex|ratchet)$}
]
]
```
An example project can be found at [iamvery/example-ratchet-app][example].
## Release
1. Bump the version in `mix.exs`.
1. Add version to CHANGELOG.
1. Commit version with Git tag `vX.X.X`.
1. Publish to Hex
```
$ mix do hex.publish, hex.publish docs
```
[phoenix]: http://www.phoenixframework.org/
[ratchet]: https://github.com/iamvery/ratchet
[example]: https://github.com/iamvery/example-ratchet-app
[docs]: https://hexdocs.pm/phoenix_ratchet