-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathGemfile
24 lines (19 loc) · 786 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
source "https://rubygems.org"
# Gems owned by Ruby directly
gem 'cgi',"~> 0.3" # Ruby official
gem 'csv', "~> 3.3" # Ruby Official
gem 'fileutils', "~> 1.4" # Ruby official
gem 'openssl', ">= 3.2" # Ruby official
gem 'rake', "~> 13.2" # Ruby official
gem 'zlib', "~> 1.1" # Ruby official
# Gems owned by Google
gem 'google-protobuf', ">= 4.26" # Google official
# Gems owned by some "organization" on GitHub
gem 'rspec' # Owned by rspec
gem 'sqlite3', ">= 1.4" # Owned by SparkleMotion
# Gems with multiple possible maintainers
gem 'nokogiri', ">= 1.14" # Multiple maintainers
gem 'keyed_archive', "~> 1.0" # Owned by me and one other
# Gems with just one maintainer
gem 'CFPropertyList', ">= 3.0.7" # Single owner: @ckruse
gem 'aes_key_wrap', "~> 1.1" # Single owner: @tomdalling