Upward.Appup (upward v0.0.7)
View SourceThis module is responsible for generating appup files for changes between two versions of an application.
Summary
Functions
Generate an appup file for changes between two versions of an application.
Types
@type app() :: atom()
@type change() :: :soft | {:advanced, [term()]}
@type dep_mods() :: [module()]
@type instruction() :: {:add_module, module()} | {:delete_module, module()} | {:update, module(), :supervisor | change()} | {:update, module(), change(), dep_mods()} | {:load_module, module()} | {:load_module, module(), dep_mods()} | {:apply, {module(), atom(), [term()]}} | {:add_application, atom()} | {:remove_application, atom()} | {:restart_application, atom()} | :restart_new_emulator | :restart_emulator
@type version_str() :: String.t()