2020-11-07 13:49:32 +00:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
2022-02-12 19:55:56 +00:00
|
|
|
gem 'rails', '~> 7.0.2'
|
2020-11-07 13:49:32 +00:00
|
|
|
# Use Puma as the app server
|
|
|
|
gem 'puma', '~> 4.1'
|
2022-02-20 21:39:01 +00:00
|
|
|
# View components
|
|
|
|
gem "view_component"
|
2022-02-12 19:55:56 +00:00
|
|
|
# Separate dependency since Rails 7.0
|
|
|
|
gem 'sprockets-rails'
|
2022-02-11 23:23:31 +00:00
|
|
|
# Allows custom JS build tasks to integrate with the asset pipeline
|
|
|
|
gem 'cssbundling-rails'
|
2022-02-12 19:55:56 +00:00
|
|
|
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
|
|
|
|
gem "importmap-rails"
|
|
|
|
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
|
|
|
|
gem "turbo-rails"
|
|
|
|
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
|
|
|
gem "stimulus-rails"
|
2020-11-07 13:49:32 +00:00
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
|
|
gem 'jbuilder', '~> 2.7'
|
|
|
|
# Use Redis adapter to run Action Cable in production
|
|
|
|
# gem 'redis', '~> 4.0'
|
|
|
|
# Use Active Model has_secure_password
|
|
|
|
# gem 'bcrypt', '~> 3.1.7'
|
|
|
|
|
2021-02-02 10:44:17 +00:00
|
|
|
# Configuration
|
2020-12-08 18:16:08 +00:00
|
|
|
gem 'dotenv-rails'
|
2020-11-09 08:54:26 +00:00
|
|
|
|
2021-11-20 02:10:36 +00:00
|
|
|
# Security
|
|
|
|
gem 'lockbox'
|
|
|
|
|
2021-02-02 10:44:17 +00:00
|
|
|
# Authentication
|
2020-11-09 08:58:00 +00:00
|
|
|
gem 'warden'
|
2023-03-09 04:34:42 +00:00
|
|
|
gem 'devise', '~> 4.9.0'
|
2020-11-09 08:58:00 +00:00
|
|
|
gem 'devise_ldap_authenticatable'
|
2020-11-07 15:50:26 +00:00
|
|
|
gem 'net-ldap'
|
|
|
|
|
2021-11-20 22:13:43 +00:00
|
|
|
# Utilities
|
|
|
|
gem "rqrcode", "~> 2.0"
|
2023-02-17 09:07:42 +00:00
|
|
|
gem 'rails-settings-cached', '~> 2.8.3'
|
2023-03-01 09:08:24 +00:00
|
|
|
gem 'pagy', '~> 6.0', '>= 6.0.2'
|
2023-05-23 12:09:35 +00:00
|
|
|
gem 'flipper'
|
|
|
|
gem 'flipper-active_record'
|
2023-05-23 16:51:29 +00:00
|
|
|
gem 'flipper-ui'
|
2021-11-20 22:13:43 +00:00
|
|
|
|
2021-02-02 10:44:17 +00:00
|
|
|
# HTTP requests
|
2020-12-08 17:08:36 +00:00
|
|
|
gem 'faraday'
|
|
|
|
|
2021-02-02 10:44:17 +00:00
|
|
|
# Background/scheduled jobs
|
2022-12-02 14:50:19 +00:00
|
|
|
gem 'sidekiq', '< 7'
|
2021-02-02 10:44:17 +00:00
|
|
|
gem 'sidekiq-scheduler'
|
|
|
|
|
2023-03-27 10:46:14 +00:00
|
|
|
# Monitoring
|
|
|
|
gem "sentry-ruby"
|
|
|
|
gem "sentry-rails"
|
|
|
|
|
2023-03-08 06:44:18 +00:00
|
|
|
# Services
|
|
|
|
gem 'discourse_api'
|
|
|
|
gem 'nostr', git: 'https://gitea.kosmos.org/kosmos/nostr-gem.git', branch: 'feature/ruby_2.7_compat'
|
|
|
|
|
2020-11-07 13:49:32 +00:00
|
|
|
group :development, :test do
|
2020-11-21 13:12:09 +00:00
|
|
|
# Use sqlite3 as the database for Active Record
|
|
|
|
gem 'sqlite3', '~> 1.4'
|
2022-02-12 21:09:41 +00:00
|
|
|
gem 'rspec-rails'
|
2022-12-05 12:20:47 +00:00
|
|
|
gem "byebug", "~> 11.1"
|
2020-11-07 13:49:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
|
|
gem 'web-console', '>= 3.3.0'
|
|
|
|
gem 'listen', '~> 3.2'
|
2020-11-10 10:36:06 +00:00
|
|
|
gem 'letter_opener'
|
|
|
|
gem 'letter_opener_web'
|
2022-12-07 17:12:54 +00:00
|
|
|
gem 'faker'
|
2023-03-31 16:07:38 +00:00
|
|
|
gem 'solargraph'
|
2020-11-07 13:49:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
2020-11-18 08:17:56 +00:00
|
|
|
gem 'factory_bot_rails'
|
2020-11-07 13:49:32 +00:00
|
|
|
gem 'capybara'
|
|
|
|
gem 'database_cleaner'
|
2020-12-08 17:15:44 +00:00
|
|
|
gem 'webmock'
|
2020-11-07 13:49:32 +00:00
|
|
|
end
|
|
|
|
|
2020-11-21 13:12:09 +00:00
|
|
|
group :production do
|
|
|
|
# Use postgresql as the database for Active Record
|
|
|
|
gem 'pg', '~> 1.2.3'
|
|
|
|
end
|
2020-11-07 13:49:32 +00:00
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|