forked from moebooru/moebooru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (30 loc) · 795 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
source "https://rubygems.org"
gem "rails", "~> 7.2.1"
gem "sprockets-rails"
gem "jsbundling-rails", ">= 1.3.0"
gem "terser"
gem "pg"
gem "diff-lcs", require: [ "diff-lcs", "diff/lcs/array" ]
gem "dalli"
gem "connection_pool"
gem "exception_notification"
gem "will_paginate"
gem "will-paginate-i18n"
gem "sitemap_generator"
gem "daemons", require: false
gem "newrelic_rpm"
gem "nokogiri"
gem "rails-i18n"
gem "addressable", require: "addressable/uri"
gem "mini_magick"
gem "i18n-js", "~> 3.0.0"
gem "mini_mime"
gem "puma", require: false
group :test do
gem "rails-controller-testing"
end
gem "pry", group: [ :development, :test ]
gem "rubocop-rails-omakase", require: false, group: [ :development ]
gem "jbuilder", "~> 2.5"
# Must be last.
gem "rack-mini-profiler", group: :development