View Source Medic.Checks.Hex (Medic v1.7.3)

Hex installed locally, and mix deps installed.

examples

Examples

{Check.Hex, :local_hex?}
{Check.Hex, :installed?}

Link to this section Summary

Functions

Checks that hex is installed locally.

Checks that rebar is installed locally.

Checks that all Mix dependencies are compiled.

Checks that all Mix dependencies are installed.

Link to this section Functions

@spec local_hex_installed?() :: Medic.Check.check_return_t()

Checks that hex is installed locally.

Link to this function

local_rebar_installed?()

View Source
@spec local_rebar_installed?() :: Medic.Check.check_return_t()

Checks that rebar is installed locally.

Link to this function

packages_compiled?(opts \\ [])

View Source
@spec packages_compiled?(opts :: Keyword.t()) :: Medic.Check.check_return_t()

Checks that all Mix dependencies are compiled.

examples

Examples

{Medic.Checks.Hex, :packages_compiled?}
{Medic.Checks.Hex, :packages_compiled?, [cd: "subdirectory"]}
Link to this function

packages_installed?(opts \\ [])

View Source
@spec packages_installed?(opts :: Keyword.t()) :: Medic.Check.check_return_t()

Checks that all Mix dependencies are installed.

examples

Examples

{Medic.Checks.Hex, :packages_installed?}
{Medic.Checks.Hex, :packages_installed?, [cd: "subdirectory"]}