Packages

APNs provider for Apple Push Notification services (APNs) in Erlang. It supports the HTTP2 API.

Current section

Files

Jump to
apns4erl rebar.config
Raw

rebar.config

%% == Erlang Compiler ==
{erl_opts, [
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record,
debug_info
]}.
%% OTP 27 is the first release shipping the built-in `json` module, which
%% replaced our jsx dependency.
{minimum_otp_vsn, "27"}.
%% == Dependencies ==
{deps, [
{gun, "2.1.0"},
{base64url, "1.0.1"}
]}.
%% == Plugins ==
%% Don't go below these. Both plugins are built with warnings_as_errors, so
%% older releases fail on newer compilers: earlier ones pull a katana_code
%% without `nowarn_deprecated_catch' (breaks from OTP 28 on), and elvis_core
%% below 5 exports a binding from a subexpression (breaks on OTP 29). They
%% also share one plugin directory, so both must agree on a katana_code 2.5.x.
{project_plugins, [
{rebar3_hank, "2.0.0"},
{rebar3_lint, "6.0.0"},
{rebar3_depup, "1.0.0"},
rebar3_hex
]}.
%% == Profiles ==
{profiles, [
{test, [
{erl_opts, [
nowarn_missing_spec
]},
{deps, [
{meck, "1.2.0"}
]},
{dialyzer, [
{plt_extra_apps, [
common_test,
meck
]}
]}
]}
]}.
%% == Common Test ==
{ct_compile_opts, [
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record,
debug_info
]}.
{ct_opts, [
{sys_config, ["test/test.config"]}
]}.
%% == Cover ==
{project_plugins, [coveralls]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_opts, [verbose]}.
%% == EDoc ==
{edoc_opts, [
{report_missing_types, true},
{source_path, ["src"]},
{report_missing_types, true},
{todo, true},
{packages, false},
{subpackages, false}
]}.
%% == Dialyzer ==
{dialyzer, [
{plt_apps, top_level_deps},
{plt_extra_apps, []},
{plt_location, local},
{plt_prefix, "apns"},
{base_plt_location, "."},
{base_plt_prefix, "apns"}
]}.
%% == Xref ==
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]}.
%% == Hank ==
{hank, [
{ignore, [
"test/*_SUITE.erl"
]}
]}.