-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (23 loc) · 822 Bytes
/
Gemfile
File metadata and controls
29 lines (23 loc) · 822 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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
gem "pg", ">= 0.21.0", platform: :ruby
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.1", platform: :jruby
if ENV["ACTIVE_RECORD_BRANCH"]
gem "activerecord", git: "https://github.com/rails/rails.git", branch: ENV.fetch("ACTIVE_RECORD_BRANCH", nil)
gem "arel", git: "https://github.com/rails/arel.git" if ENV.fetch("ACTIVE_RECORD_BRANCH", nil) == "master"
end
gem "activerecord", ENV.fetch("ACTIVE_RECORD_VERSION", nil) if ENV["ACTIVE_RECORD_VERSION"] # standard:disable Bundler/DuplicatedGem
gem "benchmark"
gem "debug"
gem "irb"
gem "mutex_m"
gem "rake"
gem "rspec"
gem "simplecov"
gem "simplecov-lcov"
gem "standard", require: false
gem "standard-rails", require: false
gem "standard-rspec", require: false
gem "warning"
gem "with_model"