blob: 7ef28414a7145ae860b69483ebed028efbb3d6d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# `Gemfile` guidelines
When adding a new entry to `Gemfile` or upgrading an existing dependency pay
attention to the following rules.
## No gems fetched from git repositories
We do not allow gems that are fetched from git repositories. All gems have
to be available in RubyGems index. We want to minimize the external services
that we depend on in our builds and also reduce the build time.
## License compliance
Refer to [licensing guidelines](licensing.md) for ensuring license compliance.
|