distillery v0.9.5 Mix.Releases.App
Represents important metadata about a given application.
Summary
Functions
Create a new Application struct from an application name
Same as new/1, but specify the application’s start type
Types
start_type ::
:permanent |
:temporary |
:transient |
:load |
:none
t :: %Mix.Releases.App{applications: [atom], included_applications: [atom], name: atom, path: nil | String.t, start_type: start_type, unhandled_deps: [atom], vsn: String.t}
Functions
Specs
new(atom) ::
nil |
Mix.Releases.App.t |
{:error, String.t}
Create a new Application struct from an application name
Specs
new(atom, start_type | nil) ::
nil |
Mix.Releases.App.t |
{:error, String.t}
Same as new/1, but specify the application’s start type