Aura.Model.HexPackageMeta (Aura v1.0.1)
View SourceA struct describing additional metadata about a Aura.Model.HexPackage
Examples
%Aura.Model.HexPackageMeta{
maintainers: [],
links: %{"GitHub" => "https://github.com/michalmuskala/jason"},
licenses: ["Apache-2.0"],
description: "A blazing fast JSON parser and generator in pure Elixir."
}
Resources
- Hex
- Contact the maintainer (he's happy to help!)
See Also
Summary
Types
Additional URLs associated with the Hex package
Additional external URL relating to the package
Short, human-readable description of the package
The software license associated to the package
Type describing additional metadata about a Aura.Model.HexPackage
Types
Additional URLs associated with the Hex package
Examples
%{"GitHub" => "https://github.com/michalmuskala/jason"}
See Also
@type meta_url() :: URI.t()
Additional external URL relating to the package
Examples
"https://github.com/michalmuskala/jason"
See Also
@type package_description() :: String.t()
Short, human-readable description of the package
Examples
"A blazing fast JSON parser and generator in pure Elixir."
See Also
@type software_license() :: String.t()
The software license associated to the package
Examples
"Apache-2.0"
See Also
@type t() :: %Aura.Model.HexPackageMeta{ description: package_description(), licenses: [software_license()], links: %{required(String.t()) => meta_url()}, maintainers: [Aura.Common.username()] }
Type describing additional metadata about a Aura.Model.HexPackage
Keys
- links ::
Aura.Model.HexPackageMeta.additional_links/0
- description ::
Aura.Model.HexPackageMeta.package_description/0
- maintainers :: [
Aura.Common.username/0
] - licenses :: [
Aura.Model.HexPackageMeta.software_license/0
]
Examples
%Aura.Model.HexPackageMeta{
maintainers: [],
links: %{"GitHub" => "https://github.com/michalmuskala/jason"},
licenses: ["Apache-2.0"],
description: "A blazing fast JSON parser and generator in pure Elixir."
}
See Also
Functions
Builds a HexPackageMeta
from a map
Parameters
Parameter | Description |
---|---|
m | A map to build into a Aura.Model.HexPackageMeta.t/0 |