2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 01:47:48 +00:00
moebooru/Gemfile

39 lines
795 B
Ruby
Raw Normal View History

2013-06-25 12:27:34 +09:00
source "https://rubygems.org"
2024-09-01 05:00:14 +09:00
gem "rails", "~> 7.2.1"
gem "sprockets-rails"
2024-02-03 23:34:43 +09:00
gem "jsbundling-rails", ">= 1.3.0"
gem "terser"
2012-06-25 19:52:34 +07:00
2022-08-11 21:54:05 +09:00
gem "pg"
2013-06-25 12:27:34 +09:00
2024-01-08 19:39:01 +09:00
gem "diff-lcs", require: [ "diff-lcs", "diff/lcs/array" ]
2013-06-25 12:27:34 +09:00
gem "dalli"
gem "connection_pool"
gem "exception_notification"
2013-06-25 12:27:34 +09:00
gem "will_paginate"
gem "will-paginate-i18n"
gem "sitemap_generator"
2024-01-08 19:39:01 +09:00
gem "daemons", require: false
2013-06-25 12:27:34 +09:00
gem "newrelic_rpm"
gem "nokogiri"
gem "rails-i18n"
2024-01-08 19:39:01 +09:00
gem "addressable", require: "addressable/uri"
gem "mini_magick"
gem "i18n-js", "~> 3.0.0"
2017-12-09 03:36:48 +09:00
gem "mini_mime"
gem "puma", require: false
2013-02-20 18:51:08 +09:00
2015-08-06 20:59:00 +09:00
group :test do
2016-08-16 05:44:21 +09:00
gem "rails-controller-testing"
2015-08-06 20:59:00 +09:00
end
2024-01-08 19:39:01 +09:00
gem "pry", group: [ :development, :test ]
gem "rubocop-rails-omakase", require: false, group: [ :development ]
2015-08-06 21:04:10 +09:00
2019-08-17 17:03:16 +09:00
gem "jbuilder", "~> 2.5"
2014-04-08 20:07:17 +09:00
# Must be last.
2024-01-08 19:39:01 +09:00
gem "rack-mini-profiler", group: :development