foalfetch/Gemfile

46 lines
1 KiB
Text
Raw Normal View History

2024-04-04 04:21:23 -04:00
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2024-04-04 04:21:23 -04:00
ruby '3.2.2'
gem 'kaminari'
2024-04-04 04:21:23 -04:00
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem 'rails', '~> 7.0.8', '>= 7.0.8.1'
gem 'redcarpet'
2024-04-04 04:21:23 -04:00
gem 'slim-rails'
gem 'sprockets-rails'
gem 'redis'
gem 'elasticsearch-model'
gem 'fancy_searchable', github: 'Twibooru/fancy_searchable', ref: '40687c9'
2024-04-04 04:21:23 -04:00
gem 'model-msearch'
gem 'sidekiq'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
2024-04-04 04:21:23 -04:00
gem 'tzinfo-data', platforms: %i[ mingw mswin x64_mingw jruby ]
# Use Sass to process CSS
# gem "sassc-rails"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
2024-04-04 04:21:23 -04:00
gem 'debug', platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem 'annotate'
2024-04-03 05:32:16 -04:00
gem 'bullet'
2024-04-04 04:21:23 -04:00
gem 'rubocop', require: false
gem 'web-console'
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
2024-04-04 04:21:23 -04:00
gem 'capybara'
gem 'selenium-webdriver'
end