Weasel
Weasel is a Heroku like fake name generator.
iex(1)> Weasel.fake
"misty-flower-444"
iex(2)> Weasel.fake
"winter-dew-724"Elixir clone of https://github.com/usmanbashir/haikunator.
P.S: If you can find out why it’s named Weasel, just send me an email :)
Installation
If available in Hex, the package can be installed as:
-
Add
weaselto your list of dependencies inmix.exs:
```elixir
def deps do
[{:weasel, "~> 0.1.0"}]
end
```-
Ensure
weaselis started before your application:
```elixir
def application do
[applications: [:weasel]]
end
```