forked from brendon/positioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (25 loc) · 625 Bytes
/
Gemfile
File metadata and controls
31 lines (25 loc) · 625 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
source "https://rubygems.org"
# Specify your gem's dependencies in positioning.gemspec
gemspec
gem "rake", "~> 13.3"
gem "minitest", "~> 6.0"
gem "minitest-hooks", "~> 1.5.3"
gem "mocha", "~> 3.0.1"
gem "standard", "~> 1.52.0"
if ENV["RAILS_VERSION"]
gem "activerecord", ENV["RAILS_VERSION"]
gem "activesupport", ENV["RAILS_VERSION"]
end
case ENV["DB"]
when "sqlite"
if ENV["RAILS_VERSION"] &&
Gem::Version.new(ENV["RAILS_VERSION"]) >= Gem::Version.new("7.2")
gem "sqlite3", "~> 2.9.0"
else
gem "sqlite3", "~> 1.7.3"
end
when "postgresql"
gem "pg", "~> 1.6.3"
else
gem "mysql2", "0.5.6"
end