Add the following code to your project's shard.yml under:
dependencies
to use in production
- OR -
development_dependencies
to use in development
Generate Heroku-like memorable random names to use in your apps or anywhere else.
Add this to your application's shard.yml
:
dependencies:
haikunator:
github: osfx/haikunator
require "haikunator"
Haikunator.haikunate # => "rough-snowflake-1142"
# Token range
Haikunator.haikunate(100) # => "nameless-star-13"
# Don't include the token
Haikunator.haikunate(0) # => "long-flower"
# Use a different delimiter
Haikunator.haikunate(9999, ".") # => "cool.leaf.6743"
# No token, no delimiter
Haikunator.haikunate(0, " ") # => "green fire"
TODO: Write usage instructions here
crystal spec
Haikunator based on Usman Bashir awesome gem and also have ports to other languages.