mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
12 lines
497 B
Go
12 lines
497 B
Go
package pkg
|
|
|
|
// GemMetadata represents all metadata parsed from the gemspec file
|
|
type GemMetadata struct {
|
|
Name string `mapstructure:"name" json:"name"`
|
|
Version string `mapstructure:"version" json:"version"`
|
|
Files []string `mapstructure:"files" json:"files,omitempty"`
|
|
Authors []string `mapstructure:"authors" json:"authors,omitempty"`
|
|
Licenses []string `mapstructure:"licenses" json:"licenses,omitempty"`
|
|
Homepage string `mapstructure:"homepage" json:"homepage,omitempty"`
|
|
}
|