gitlab-ce/gems
GitLab Bot 9297025d0b Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
..
activerecord-gitlab Add latest changes from gitlab-org/gitlab@16-5-stable-ee 2023-10-19 12:57:54 +00:00
click_house-client Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
config Add latest changes from gitlab-org/gitlab@16-6-stable-ee 2023-11-14 08:41:52 +00:00
csv_builder Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
error_tracking_open_api Add latest changes from gitlab-org/gitlab@16-3-stable-ee 2023-08-18 10:50:51 +00:00
gitlab-backup-cli Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-database-load_balancing Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-database-lock_retries Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-housekeeper Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-http Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-rspec Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-rspec_flaky Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-safe_request_store Add latest changes from gitlab-org/gitlab@16-3-stable-ee 2023-08-18 10:50:51 +00:00
gitlab-schema-validation Add latest changes from gitlab-org/gitlab@16-5-stable-ee 2023-10-19 12:57:54 +00:00
gitlab-secret_detection Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gitlab-utils Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
ipynbdiff
README.md
gem-pg.gitlab-ci.yml Add latest changes from gitlab-org/gitlab@16-7-stable-ee 2023-12-19 11:01:45 +00:00
gem.gitlab-ci.yml Add latest changes from gitlab-org/gitlab@16-4-stable-ee 2023-09-20 11:18:08 +00:00

README.md

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/.