-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (26 loc) · 860 Bytes
/
Copy pathGemfile
File metadata and controls
32 lines (26 loc) · 860 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
group :development do
gem "rspec"
gem "rake"
# rails/rails@e4bb4474 = merge of rails/rails#58323 (deprecate positional
# binds for #insert/#update/#delete); bump per follow-up Rails change
gem "activerecord", github: "rails/rails", ref: "e4bb447415e4e169a7c621d3f727dddc0ab9ae11"
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