This repository was archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
65 lines (58 loc) · 1.18 KB
/
Copy pathGemfile
File metadata and controls
65 lines (58 loc) · 1.18 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "~> 2.7.0"
gem "dotenv-rails", require: "dotenv/rails-now"
gem "activerecord-pg_enum"
gem "ancestry"
gem "bootsnap", require: false
gem "delayed_job_active_record"
gem "diffy"
gem "high_voltage"
gem "hiredis"
gem "image_processing"
gem "inline_svg"
gem "jbuilder"
gem "kaminari"
gem "kramdown"
gem "lograge"
gem "omniauth"
gem "omniauth-github"
gem "omniauth-google-oauth2"
gem "omniauth-rails_csrf_protection"
gem "paper_trail"
gem "pg"
gem "puma"
gem "rails", "~> 6.1.3"
gem "redis"
gem "sass-rails"
gem "scenic"
gem "sentry-raven"
gem "sequenced"
gem "turbolinks"
gem "webpacker"
group :development, :test do
gem "bullet"
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "factory_bot_rails"
gem "faker"
gem "guard"
gem "guard-livereload"
gem "guard-minitest"
end
group :development do
gem "listen"
gem "spring"
gem "spring-watcher-listen"
gem "web-console"
end
group :test do
gem "capybara"
gem "json-schema"
gem "minitest-ci"
gem "selenium-webdriver"
gem "webdrivers"
end
group :production do
gem "appsignal"
gem "google-cloud-storage", require: false
end