Documentation ¶
Index ¶
Constants ¶
View Source
const DefaultRegistryURL = "https://github.com/buildpacks/registry-index"
View Source
const GithubIssueBodyTemplate = `` /* 127-byte string literal not displayed */
View Source
const GithubIssueTitleTemplate = "{{ if .Yanked }}YANK{{ else }}ADD{{ end }} {{.Namespace}}/{{.Name}}@{{.Version}}"
Variables ¶
This section is empty.
Functions ¶
func CreateBrowserCmd ¶ added in v0.13.0
func ParseNamespaceName ¶ added in v0.13.0
Types ¶
type Buildpack ¶
type Buildpack struct { Namespace string `json:"ns"` Name string `json:"name"` Version string `json:"version"` Yanked bool `json:"yanked"` Address string `json:"addr,omitempty"` }
Buildpack contains information about a buildpack stored in a Registry
type Cache ¶
type Cache struct { Root string // contains filtered or unexported fields }
Cache is a RegistryCache
func NewDefaultRegistryCache ¶
NewDefaultRegistryCache creates a new registry cache with default options
func NewRegistryCache ¶
NewRegistryCache creates a new registry cache
func (*Cache) LocateBuildpack ¶
LocateBuildpack stored in registry
type Entry ¶
type Entry struct {
Buildpacks []Buildpack `json:"buildpacks"`
}
Entry is a list of buildpacks stored in a registry
type GithubIssue ¶ added in v0.13.0
func CreateGithubIssue ¶ added in v0.13.0
func CreateGithubIssue(b Buildpack) (GithubIssue, error)
Click to show internal directories.
Click to hide internal directories.