-
-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (25 loc) · 999 Bytes
/
Copy pathGemfile
File metadata and controls
32 lines (25 loc) · 999 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
source "http://rubygems.org"
gem 'base64' # Deprecation notice in Ruby 3.3, removed from default gems in Ruby 3.4
gem 'benchmark' # Deprecation notice in Ruby 3.4, removed from default gems in Ruby 3.5
gem 'bigdecimal' # Deprecation notice in Ruby 3.3, removed from default gems in Ruby 3.4
gem 'logger' # Deprecation notice in Ruby 3.4, removed from default gems in Ruby 3.5
gem 'mutex_m' # Deprecation notice in Ruby 3.3, removed from default gems in Ruby 3.4
gem "rake", "~> 13.0"
gem "minitest", "~> 5.0"
gem "minitest-hooks", "~> 1.5.1"
gem "mocha", "~> 2.1.0"
gem "timecop", "~> 0.9.8"
gem "mysql2", "0.5.6"
gem "pg", "~> 1.5.5"
rails_version = Gem::Version.new(ENV["RAILS_VERSION"])
if rails_version >= Gem::Version.new('7.2')
gem "sqlite3", "~> 2.7.3"
else
gem "sqlite3", "~> 1.7.3"
end
if ENV["RAILS_VERSION"]
gem "activerecord", ENV["RAILS_VERSION"]
gem "activesupport", ENV["RAILS_VERSION"]
end
# Specify your gem's dependencies in acts_as_list.gemspec
gemspec