forked from rsim/ruby-plsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (23 loc) · 628 Bytes
/
Gemfile
File metadata and controls
28 lines (23 loc) · 628 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
source "https://rubygems.org"
group :development do
gem "rspec_junit_formatter"
gem "rdoc"
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