-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (39 loc) · 863 Bytes
/
Gemfile
File metadata and controls
43 lines (39 loc) · 863 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
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
source 'https://rubygems.org'
case ENV.fetch('DATABASE_ADAPTER', nil)
when 'mongoid'
gem 'kaminari-mongoid'
gem 'mongoid'
gem 'mongoid-scroll'
when 'activerecord'
gem 'activerecord'
gem 'mutex_m'
gem 'otr-activerecord'
gem 'pagy_cursor'
gem 'pg'
gem 'virtus'
when nil
warn "Missing ENV['DATABASE_ADAPTER']."
else
warn "Invalid ENV['DATABASE_ADAPTER']: #{ENV.fetch('DATABASE_ADAPTER', nil)}."
end
gemspec
group :development, :test do
gem 'bundler'
gem 'danger'
gem 'danger-changelog', require: false
gem 'danger-pr-comment', require: false
gem 'danger-toc', require: false
gem 'database_cleaner'
gem 'fabrication'
gem 'faker'
gem 'hyperclient'
gem 'rack-test'
gem 'rake'
gem 'rspec'
gem 'rubocop', '1.80.2'
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'vcr'
gem 'webmock'
end