Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gems
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 13:43:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 13:43:29 +0300
commit3b1af5cc7ed2666ff18b718ce5d30fa5a2756674 (patch)
tree3bc4a40e0ee51ec27eabf917c537033c0c5b14d4 /gems
parent9bba14be3f2c211bf79e15769cd9b77bc73a13bc (diff)
Add latest changes from gitlab-org/gitlab@16-1-stable-eev16.1.0-rc42
Diffstat (limited to 'gems')
-rw-r--r--gems/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/gems/README.md b/gems/README.md
new file mode 100644
index 00000000000..65bb95dec57
--- /dev/null
+++ b/gems/README.md
@@ -0,0 +1,18 @@
+# GitLab Gems
+
+This directory contains all GitLab built monorepo Gems.
+
+## Development guidelines
+
+The Gems created in this repository should adhere to the following rules:
+
+- MUST: Contain `.gitlab-ci.yml`.
+- MUST: Contain `.rubocop.yml` and be based on `gitlab-styles`.
+- MUST: Be added to `.gitlab/ci/gitlab-gems.gitlab-ci.yml`.
+- MUST NOT: Reference source code outside of `gems/<gem-name>/` with `require_relative "../../lib"`.
+- MUST NOT: Require other gems that would result in circular dependencies.
+- MAY: Reference other Gems in `gems/` folder or `vendor/gems/` with `gem <name>, path: "../gitlab-rspec"`.
+- MAY: Define in `.gemspec` the owning group, like `group::tenant scale`.
+- RECOMMENDED: Namespaced with `Gitlab::<GemName>`.
+- RECOMMENDED: Be added to `CODEOWNERS`.
+- MUST NOT: Have an active associated project created in [gitlab-org/ruby/gems/](https://gitlab.com/gitlab-org/ruby/gems).