-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (22 loc) · 941 Bytes
/
Gemfile
File metadata and controls
29 lines (22 loc) · 941 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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
gem "mysql2", "~> 0.5", :platform => :ruby
gem "pg", "~> 1.0", :platform => :ruby
if RUBY_VERSION.to_f < 3.0
gem "sqlite3", "~> 1.3.13"
else
gem "sqlite3", ">= 1.4"
end
gem "activerecord-jdbcmysql-adapter", ">= 1.3.23", :platform => :jruby
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.23", :platform => :jruby
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.23", :platform => :jruby
gem "activerecord", [">= 5.2"] if RUBY_PLATFORM == "java"
# Required for testing Rails 6.1 on MRI 3.1+
gem "net-smtp" if RUBY_VERSION.to_f > 3.0
# mutex_m is no longer a default gem in MRI 3.4, warnings in 3.3
gem "mutex_m" if RUBY_VERSION.to_f > 3.2
# drb is no longer a default gem in MRI 4.0, warnings in 3.4
gem "drb" if RUBY_VERSION.to_f > 3.3
# benchmark is no longer a default gem in MRI 4.0, warnings in 3.4
gem "benchmark" if RUBY_VERSION.to_f > 3.3