-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Gemfile
41 lines (38 loc) · 949 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
29
30
31
32
33
34
35
36
37
38
39
40
41
source 'https://rubygems.org'
case ENV.fetch('DATABASE_ADAPTER', nil)
when 'mongoid' then
gem 'kaminari-mongoid'
gem 'mongoid', ENV['MONGOID_VERSION'] || '~> 7.3.0'
gem 'mongoid-scroll'
gem 'mongoid-shell'
when 'activerecord' then
gem 'activerecord', ENV['ACTIVERECORD_VERSION'] || '~> 6.0.0'
gem 'otr-activerecord'
gem 'pagy_cursor'
gem 'pg'
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 'byebug'
gem 'capybara', '~> 3.36.0'
gem 'database_cleaner', '~> 1.8.5'
gem 'fabrication'
gem 'faker'
gem 'faraday', '0.17.5'
gem 'hyperclient', '~> 0.9.3'
gem 'rack', '~> 2.2.3'
gem 'rack-server-pages'
gem 'rack-test'
gem 'rake'
gem 'rspec'
gem 'rubocop', '1.47'
gem 'selenium-webdriver', '~> 4.1.0'
gem 'vcr'
gem 'webmock'
gem 'webrick', '~> 1.6.1'
end