Document "No gems fetched from git repositories" policy [ci skip]
This commit is contained in:
parent
305270e864
commit
204020fc33
2 changed files with 15 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
- [Frontend guidelines](frontend.md)
|
- [Frontend guidelines](frontend.md)
|
||||||
- [SQL guidelines](sql.md) for working with SQL queries
|
- [SQL guidelines](sql.md) for working with SQL queries
|
||||||
- [Sidekiq guidelines](sidekiq_style_guide.md) for working with Sidekiq workers
|
- [Sidekiq guidelines](sidekiq_style_guide.md) for working with Sidekiq workers
|
||||||
|
- [`Gemfile` guidelines](gemfile.md)
|
||||||
|
|
||||||
## Process
|
## Process
|
||||||
|
|
||||||
|
|
14
doc/development/gemfile.md
Normal file
14
doc/development/gemfile.md
Normal file
|
@ -0,0 +1,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 the RubyGems index. We want to minimize external build
|
||||||
|
dependencies and build times.
|
||||||
|
|
||||||
|
## License compliance
|
||||||
|
|
||||||
|
Refer to [licensing guidelines](licensing.md) for ensuring license compliance.
|
Loading…
Reference in a new issue