Skip to content

Commit ae63a7e

Browse files
Updating Gemfile to better reflect this project's dependencies and risks therein.
1 parent 14646d8 commit ae63a7e

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

Gemfile

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
source "https://rubygems.org"
22

3-
gem 'aes_key_wrap', ">= 1.1.0"
4-
gem 'fileutils', ">= 1.4.0"
5-
gem 'google-protobuf', ">= 3.11.2"
6-
gem 'nokogiri', ">= 1.14.0"
7-
gem 'openssl', ">= 2.2.0"
8-
gem 'rake', ">= 10.5.0"
9-
gem 'sqlite3', ">= 1.4.0"
10-
gem 'zlib', ">= 1.1.0"
11-
gem 'keyed_archive', ">= 1.0.0"
12-
gem 'cgi',">= 0.3.3"
13-
14-
ruby ">= 2.7"
3+
# Gems owned by Ruby directly
4+
gem 'cgi',">= 0.3.3" # Ruby official
5+
gem 'fileutils', ">= 1.4.0" # Ruby official
6+
gem 'openssl', ">= 2.2.0" # Ruby official
7+
gem 'rake', ">= 10.5.0" # Ruby official
8+
gem 'zlib', ">= 1.1.0" # Ruby official
9+
10+
# Gems owned by Google
11+
gem 'google-protobuf', ">= 3.11.2" # Google official
12+
13+
# Gems owned by some "organization" on GitHub
14+
gem 'rspec' # Owned by rspec
15+
gem 'sqlite3', ">= 1.4.0" # Owned by SparkleMotion
16+
17+
# Gems with multiple possible maintainers
18+
gem 'nokogiri', ">= 1.14.0" # Multiple maintainers
19+
gem 'keyed_archive', ">= 1.0.0" # Owned by me and one other
20+
21+
# Gems with just one maintainer
22+
gem 'aes_key_wrap', ">= 1.1.0" # Single owner: @tomdalling

0 commit comments

Comments
 (0)