-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (24 loc) · 679 Bytes
/
Copy pathGemfile
File metadata and controls
30 lines (24 loc) · 679 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
group :development do
gem "rspec"
gem "rake"
gem "activerecord", github: "rails/rails", branch: "main"
gem "ruby-plsql", github: "rsim/ruby-plsql", branch: "master"
platforms :ruby do
gem "ruby-oci8", github: "kubo/ruby-oci8"
gem "rdoc"
gem "debug", require: false
end
platforms :jruby do
gem "pry"
gem "pry-nav"
end
end
group :rubocop do
gem "rubocop", "!= 1.84.0", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
end