-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (26 loc) · 757 Bytes
/
Copy pathGemfile
File metadata and controls
32 lines (26 loc) · 757 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 "https://rubygems.org"
group :development do
gem "rspec_junit_formatter"
gem "rdoc"
platforms :jruby do
gem "rbs", ">= 4.1.0.pre.2" # Use the java-platform gem so JRuby does not build the C extension
end
end
group :rubocop do
gem "rubocop", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
end
group :test, :development do
gem "rake", ">= 10.0"
gem "rspec", "~> 3.1"
gem "logger"
unless ENV["NO_ACTIVERECORD"]
gem "activerecord", github: "rails/rails", branch: "main"
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
gem "simplecov", ">= 0"
end
platforms :ruby, :windows do
gem "ruby-oci8", "~> 2.1"
end
end