Packages

RingBuffer - size limited queue, like a ring or cyclic buffer. With non blocking and non locking writers.

Current section

Files

Jump to
ringbuffer rebar.config
Raw

rebar.config

{erl_opts, [
debug_info,
warn_unused_vars,
warn_shadow_vars,
warn_unused_import
]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{deps, [
]}.
{eunit_opts, [verbose]}.
{xref_checks, [undefined_function_calls,
locals_not_used,
deprecated_function_calls]}.
{edoc_opts, [
{preprocess, true},
{stylesheet, "style.css"}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/zotonic/ringbuffer"},
{assets, #{ "assets" => "assets"}},
{api_reference, true}
]}.