sourcegraph/schema/stringdata.go
Ólafur Páll Geirsson 7fc0120a59
Packages: add RubyGems support (#42817)
* Packages: add RubyGems support

* Add metadata.gz file to the generated directory

This makes it easier to write auto-inference rules against Ruby gems.

* Fix CI errors

* Add back empty go.mod file
2022-10-17 09:48:18 +02:00

97 lines
2.6 KiB
Go

package schema
import _ "embed"
// AWSCodeCommitSchemaJSON is the content of the file "aws_codecommit.schema.json".
//
//go:embed aws_codecommit.schema.json
var AWSCodeCommitSchemaJSON string
// BatchSpecSchemaJSON is the content of the file "batch_spec.schema.json".
//
//go:embed batch_spec.schema.json
var BatchSpecSchemaJSON string
// BitbucketCloudSchemaJSON is the content of the file "bitbucket_cloud.schema.json".
//
//go:embed bitbucket_cloud.schema.json
var BitbucketCloudSchemaJSON string
// BitbucketServerSchemaJSON is the content of the file "bitbucket_server.schema.json".
//
//go:embed bitbucket_server.schema.json
var BitbucketServerSchemaJSON string
// ChangesetSpecSchemaJSON is the content of the file "changeset_spec.schema.json".
//
//go:embed changeset_spec.schema.json
var ChangesetSpecSchemaJSON string
// GerritSchemaJSON is the content of the file "gerrit.schema.json".
//
//go:embed gerrit.schema.json
var GerritSchemaJSON string
// GitHubSchemaJSON is the content of the file "github.schema.json".
//
//go:embed github.schema.json
var GitHubSchemaJSON string
// GitLabSchemaJSON is the content of the file "gitlab.schema.json".
//
//go:embed gitlab.schema.json
var GitLabSchemaJSON string
// GitoliteSchemaJSON is the content of the file "gitolite.schema.json".
//
//go:embed gitolite.schema.json
var GitoliteSchemaJSON string
//go:embed go-modules.schema.json
var GoModulesSchemaJSON string
//go:embed jvm-packages.schema.json
var JVMPackagesSchemaJSON string
//go:embed npm-packages.schema.json
var NpmPackagesSchemaJSON string
//go:embed python-packages.schema.json
var PythonPackagesSchemaJSON string
//go:embed rust-packages.schema.json
var RustPackagesSchemaJSON string
//go:embed ruby-packages.schema.json
var RubyPackagesSchemaJSON string
// OtherExternalServiceSchemaJSON is the content of the file "other_external_service.schema.json".
//
//go:embed other_external_service.schema.json
var OtherExternalServiceSchemaJSON string
// PerforceSchemaJSON is the content of the file "perforce.schema.json".
//
//go:embed perforce.schema.json
var PerforceSchemaJSON string
// PhabricatorSchemaJSON is the content of the file "phabricator.schema.json".
//
//go:embed phabricator.schema.json
var PhabricatorSchemaJSON string
// PagureSchemaJSON is the content of the file "pagure.schema.json".
//
//go:embed pagure.schema.json
var PagureSchemaJSON string
// SettingsSchemaJSON is the content of the file "settings.schema.json".
//
//go:embed settings.schema.json
var SettingsSchemaJSON string
// SiteSchemaJSON is the content of the file "site.schema.json".
//
//go:embed site.schema.json
var SiteSchemaJSON string