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
- Host: GitHub
- URL: https://github.com/spilth/elixirway
- Owner: spilth
- License: mit
- Created: 2016-12-26T01:02:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-28T00:52:06.000Z (over 9 years ago)
- Last Synced: 2025-09-04T00:19:54.834Z (10 months ago)
- Language: Elixir
- Homepage: https://hexdocs.pm/elixirway/PigLatin.html
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```