An open API service indexing awesome lists of open source software.

https://github.com/spilth/elixirway

Piglatin translator using Elixir
https://github.com/spilth/elixirway

Last synced: 8 months ago
JSON representation

Piglatin translator using Elixir

Awesome Lists containing this project

README

          

# Elixirway

Piglatin translator written in Elixir

## Installation

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

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

```elixir
def deps do
[{:elixirway, "~> 0.1.3"}]
end
```

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

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

## Development

To check out and work on the project:

```bash
$ brew install elixir
$ git clone git@github.com:spilth/elixirway.git
$ cd elixirway
$ mix deps.get
$ mix test
$ mix docs
$ mix hex.publish
```