panel/Gemfile

135 lines
3.0 KiB
Ruby
Raw Permalink Normal View History

2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
source ENV.fetch('GEMS_SOURCE', 'https://17.3.alpine.gems.sutty.nl')
2018-01-02 17:19:25 +00:00
ruby "~> #{ENV.fetch('RUBY_VERSION', '3.1')}"
2019-10-16 17:56:49 +00:00
2018-01-02 17:19:25 +00:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.0'
2018-01-02 17:19:25 +00:00
# Use Puma as the app server
2019-11-15 14:20:56 +00:00
gem 'puma'
# Solo incluir las gemas cuando estemos en desarrollo o compilando los
# assets. No es necesario instalarlas en producción.
#
# XXX: Supuestamente Rails ya soporta RAILS_GROUPS, pero Bundler no.
2021-10-26 19:19:42 +00:00
if ENV['RAILS_GROUPS']&.split(',')&.include? 'assets'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'bootstrap', '~> 4'
end
2018-01-02 17:19:25 +00:00
2021-11-25 12:42:58 +00:00
gem 'nokogiri'
gem 'rgl'
2021-08-28 15:56:04 +00:00
2019-07-03 19:57:16 +00:00
# Turbolinks makes navigating your web application faster. Read more:
# https://github.com/turbolinks/turbolinks
2018-01-02 17:19:25 +00:00
gem 'turbolinks', '~> 5'
2019-07-03 19:57:16 +00:00
# Build JSON APIs with ease. Read more:
# https://github.com/rails/jbuilder
2018-01-02 17:19:25 +00:00
gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
2018-09-28 14:34:37 +00:00
gem 'bcrypt', '~> 3.1.7'
2023-06-09 16:11:02 +00:00
gem 'safely_block', '~> 0.3.0'
2020-02-06 17:06:47 +00:00
gem 'blazer'
gem 'chartkick'
2018-02-23 19:12:39 +00:00
gem 'commonmarker'
2019-07-03 19:57:16 +00:00
gem 'devise'
gem 'devise-i18n'
2019-07-05 23:55:59 +00:00
gem 'devise_invitable'
2023-08-30 14:13:49 +00:00
gem 'distributed-press-api-client', '~> 0.3.0rc0'
gem 'email_address', git: 'https://github.com/fauno/email_address', branch: 'i18n'
2019-03-26 15:32:20 +00:00
gem 'exception_notification'
2020-07-02 14:26:00 +00:00
gem 'fast_blank'
2019-07-03 23:40:24 +00:00
gem 'friendly_id'
2019-07-13 16:33:49 +00:00
gem 'hamlit-rails'
2019-07-26 00:36:33 +00:00
gem 'hiredis'
2019-08-22 01:09:29 +00:00
gem 'image_processing'
2020-06-16 16:35:08 +00:00
gem 'icalendar'
2019-09-04 16:50:27 +00:00
gem 'inline_svg'
gem 'httparty'
2023-05-20 17:27:03 +00:00
gem 'safe_yaml', require: false
gem 'jekyll', '~> 4.2.0'
2023-05-20 17:27:03 +00:00
gem 'jekyll-commonmark', '~> 1.4.0'
gem 'jekyll-images'
gem 'jekyll-include-cache'
gem 'sutty-liquid', '>= 0.7.3'
gem 'loaf'
gem 'lockbox'
2018-07-02 20:45:32 +00:00
gem 'mini_magick'
2019-07-17 22:18:48 +00:00
gem 'mobility'
2018-09-28 15:20:12 +00:00
gem 'pundit'
gem 'rails-i18n'
2019-03-26 15:32:20 +00:00
gem 'rails_warden'
2023-06-09 16:11:02 +00:00
gem 'redis', '~> 4.0', require: %w[redis redis/connection/hiredis]
2019-07-26 00:36:33 +00:00
gem 'redis-rails'
2022-04-23 18:46:24 +00:00
gem 'rollups', git: 'https://github.com/fauno/rollup.git', branch: 'update'
gem 'rubyzip'
gem 'rugged', '1.5.0.1'
gem 'git_clone_url'
gem 'concurrent-ruby-ext'
gem 'que'
2020-09-29 21:36:51 +00:00
gem 'symbol-fstring', require: 'fstring/all'
2019-07-26 00:36:33 +00:00
gem 'terminal-table'
2019-07-11 19:00:28 +00:00
gem 'validates_hostname'
gem 'webpacker'
2019-09-24 19:34:34 +00:00
gem 'yaml_db', git: 'https://0xacab.org/sutty/yaml_db.git'
2021-09-16 00:02:09 +00:00
gem 'kaminari'
gem 'device_detector'
2018-01-29 18:09:30 +00:00
# database
gem 'hairtrigger'
gem 'pg'
gem 'pg_search'
2020-05-11 21:56:42 +00:00
# performance
gem 'flamegraph'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'stackprof'
2020-09-18 23:51:52 +00:00
gem 'prometheus_exporter'
2020-05-11 21:56:42 +00:00
# debug
gem 'fast_jsonparser', '~> 0.5.0'
gem 'down'
gem 'sourcemap'
2020-12-08 23:21:42 +00:00
gem 'rack-cors'
2021-03-27 14:15:17 +00:00
# ssh
gem 'net-ssh'
gem 'ed25519'
gem 'bcrypt_pbkdf'
2020-05-11 20:32:48 +00:00
group :production do
gem 'lograge'
end
2018-01-02 17:19:25 +00:00
group :development, :test do
2020-04-14 22:07:46 +00:00
gem 'derailed_benchmarks'
2024-01-10 20:04:53 +00:00
gem 'dotenv-rails'
2018-01-29 18:09:30 +00:00
gem 'pry'
2018-01-02 17:19:25 +00:00
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
2023-06-09 16:11:02 +00:00
gem 'selenium-webdriver', '~> 4.8.0'
2019-09-24 22:53:44 +00:00
gem 'sqlite3'
2018-01-02 17:19:25 +00:00
end
group :development do
2024-01-08 20:13:43 +00:00
gem 'yard'
2020-01-22 20:42:25 +00:00
gem 'brakeman'
2024-01-12 13:29:47 +00:00
gem 'bundler-audit'
2019-07-13 16:33:49 +00:00
gem 'haml-lint', require: false
2018-09-28 15:20:12 +00:00
gem 'letter_opener'
2023-05-20 17:27:03 +00:00
gem 'listen'
2019-07-12 17:13:51 +00:00
gem 'rubocop-rails'
2019-03-26 15:32:20 +00:00
gem 'spring'
2023-05-20 17:27:03 +00:00
gem 'spring-watcher-listen'
gem 'web-console'
2018-01-02 17:19:25 +00:00
end
2019-07-11 19:00:28 +00:00
group :test do
gem 'database_cleaner'
gem 'factory_bot_rails'
2020-02-18 16:45:08 +00:00
gem 'timecop'
2019-07-11 19:00:28 +00:00
end