-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
52 lines (46 loc) · 1.36 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.1"
gem "bootsnap", "~> 1.4"
gem "devise", "~> 4.7"
gem "dotenv-rails", "~> 2.7"
gem "friendly_id", "~> 5.3"
gem "jbuilder", "~> 2.7"
gem "name_of_person", "~> 1.1"
gem "omniauth-github", "~> 1.4"
gem "pg", "~> 1.2"
gem "puma", "~> 4.3"
gem "rails", "~> 6.0"
gem "redis-rails", "~> 5.0"
gem "redis", "~> 4.1"
gem "sass-rails", "~> 6.0"
# Preconfigured: Uncomment ApplicationController#set_raven_context & sentry initializer to activate
# gem "sentry-raven", "~> 3.0"
gem "sidekiq", "~> 6.1"
# Preconfigured: Uncomment to activate
# gem "skylight", "~> 4.3"
gem "stimulus_reflex", "~> 3.2"
gem "turbolinks", "~> 5.2"
gem "view_component", "~> 2.7"
gem "webpacker", "~> 5.1.1"
group :development, :test do
gem "fasterer", "~> 0.8.3"
gem "ffaker", "~> 2.15"
gem "lol_dba", "~> 2.2"
gem "pry-rails", "~> 0.3.9"
gem "rails_best_practices", "~> 1.20"
gem "solargraph", "~> 0.39.7"
end
group :development do
gem "annotate", "~> 3.1.1"
gem "brakeman", "~> 4.8"
gem "erb_lint", "~> 0.0.33"
gem "letter_opener", "~> 1.7"
gem "listen", "~> 3.1"
gem "model_probe", "~> 1.0"
gem "standard", "~> 0.4.6"
gem "strong_versions", "~> 0.4.4"
gem "tmuxinator", "~> 2.0"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]