forked from Nasdaq/active_record_proxy_adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (28 loc) · 668 Bytes
/
Gemfile
File metadata and controls
36 lines (28 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true
source "https://rubygems.org"
gem "connection_pool", "< 3"
gem "dalli"
gem "mysql2", "~> 0.5"
gem "pg", "~> 1.6"
gem "rake", "~> 13.3"
gem "redis", "~> 5.4.1"
gem "trilogy", "~> 2.10"
gem "appraisal"
# Gems that used to be default gems in Ruby 3.7.x but aren't anymore
gem "benchmark"
gem "logger"
gem "readline"
gem "pry", "~> 0.16.0"
# for documentation server
gem "puma"
gem "rack", "~> 2.2.21"
gem "yard"
group :test do
gem "rspec", "~> 3.13"
gem "rubocop", "~> 1.84"
gem "rubocop-rspec", "~> 3.9.0"
gem "simplecov"
gem "timecop"
end
# Specify your gem's dependencies in active_record_proxy_adapters.gemspec
gemspec