forked from Casecommons/pg_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
28 lines (22 loc) · 809 Bytes
/
Gemfile
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
# 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 "debug"
gem "irb"
gem "rake"
gem "rspec"
gem "simplecov"
gem "simplecov-lcov"
gem "standard", require: false
gem "standard-rails", require: false
gem "standard-rspec", require: false
gem "undercover"
gem "warning"
gem "with_model"