Skip to content

Instantly share code, notes, and snippets.

@searls
Created December 2, 2022 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save searls/11a62d34e7d67cff3a1153f941a5cf93 to your computer and use it in GitHub Desktop.
Save searls/11a62d34e7d67cff3a1153f941a5cf93 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails'
# Use Puma as the app server
gem 'puma'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Code quality
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
# Lint your ERB or HTML files
gem 'erb_lint'
# Prevent N+1 queries
gem 'bullet'
# Database credentials
gem 'figaro'
gem 'benchmark-ips'
# CircleCI Ruby orb
gem "rspec_junit_formatter"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen'
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
gem 'brakeman'
# Patch-level verification for Bundler
gem 'bundle-audit'
# Go faster, off the Rails - Benchmarks for your whole Rails app
gem 'derailed_benchmarks'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'stackprof'
# A native development UI for ViewComponent
gem "lookbook"
# Guard is a command line tool to easily handle events on file system modifications.
gem 'guard'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'foreman'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara'
gem 'cucumber-rails', require: false
# database_cleaner is not required, but highly recommended
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'gemaina'
gem 'rspec-rails'
# RSpec for Sidekiq
gem 'rspec-sidekiq'
# RSpec matcher to control SQL queries made by block of code
gem 'rspec-sqlimit'
# Performance testing matchers for RSpec
gem 'rspec-benchmark'
gem 'selenium-webdriver'
gem 'simplecov'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'webdrivers'
# Optimize test environment
gem 'ruby-prof'
gem 'test-prof'
# Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.
gem 'vcr'
# Library for stubbing and setting expectations on HTTP requests in Ruby.
gem 'webmock'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Magical Authentication
gem 'sorcery'
# MailJet
gem 'mailjet'
# Better distance of time in words for Rails
gem 'dotiw'
# Pagination
gem 'pagy'
# ChartJs Helpers to rails
gem 'chartjs-ror'
# Psql gem
gem 'pg'
# Rails Excel gem
gem 'caxlsx'
gem 'caxlsx_rails'
gem 'rubyXL'
gem 'rubyzip'
# Generates fake data
gem 'faker'
gem 'scout_apm'
# Sentry
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'sentry-sidekiq'
# AWS SDK
gem 'aws-sdk-s3'
# Avo admin
gem 'avo'
# Object-based searching for avo admin
gem 'ransack'
# Doorkeeper is an OAuth 2 provider for Ruby on Rails
gem 'doorkeeper'
# Use Turbo in your Ruby on Rails app
gem 'turbo-rails'
# Simple, efficient background processing for Ruby
gem 'sidekiq'
# Scheduler / Cron for Sidekiq jobs
gem 'sidekiq-cron'
# Bundle and transpile JavaScript in Rails with esbuild, rollup.js, or Webpack.
gem 'jsbundling-rails'
# Bundle and process CSS in Rails with Tailwind, PostCSS, and Sass via Node.js.
gem 'cssbundling-rails'
# Adds additional postgres functionality to an ActiveRecord / Rails application
gem 'active_record_extended'
# Rack Middleware for handling Cross-Origin Resource Sharing (CORS), which makes cross-origin AJAX possible.
gem 'rack-cors'
# A framework for building reusable, testable & encapsulated view components in Ruby on Rails.
gem "view_component"
# A collection of extension and developer tools for ViewComponent
gem "view_component-contrib"
# DSL for building class initializer with params and options.
gem "dry-initializer"
# Flexible type system for Ruby with coercions and constraints
gem "dry-types"
# Integrate with external API
gem 'activeresource'
gem 'activeresource-response'
gem 'rest-client'
gem 'jwt'
# Google Recaptcha
gem 'recaptcha'
# Authorization framework for Ruby and Rails applications.
gem "action_policy"
# Monitoring
gem 'pghero'
gem 'pg_query'
# Simple Sidekiq Batch Job implementation
gem 'sidekiq-batch'
# health checks
gem 'health_bit'
# JS Stimulus
gem 'stimulus-rails'
gem "flipper-active_record"
gem "flipper-ui"
gem "maintenance_tasks"
gem 'good_migrations'
gem 'squasher'
gem 'zeitwerk'
GEM
remote: https://rubygems.org/
specs:
action_policy (0.6.3)
ruby-next-core (>= 0.14.0)
actioncable (7.0.4)
actionpack (= 7.0.4)
activesupport (= 7.0.4)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
actionmailbox (7.0.4)
actionpack (= 7.0.4)
activejob (= 7.0.4)
activerecord (= 7.0.4)
activestorage (= 7.0.4)
activesupport (= 7.0.4)
mail (>= 2.7.1)
net-imap
net-pop
net-smtp
actionmailer (7.0.4)
actionpack (= 7.0.4)
actionview (= 7.0.4)
activejob (= 7.0.4)
activesupport (= 7.0.4)
mail (~> 2.5, >= 2.5.4)
net-imap
net-pop
net-smtp
rails-dom-testing (~> 2.0)
actionpack (7.0.4)
actionview (= 7.0.4)
activesupport (= 7.0.4)
rack (~> 2.0, >= 2.2.0)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
actiontext (7.0.4)
actionpack (= 7.0.4)
activerecord (= 7.0.4)
activestorage (= 7.0.4)
activesupport (= 7.0.4)
globalid (>= 0.6.0)
nokogiri (>= 1.8.5)
actionview (7.0.4)
activesupport (= 7.0.4)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
active_link_to (1.0.5)
actionpack
addressable
active_record_extended (3.1.0)
activerecord (>= 5.2, < 7.1.0)
pg (< 3.0)
activejob (7.0.4)
activesupport (= 7.0.4)
globalid (>= 0.3.6)
activemodel (7.0.4)
activesupport (= 7.0.4)
activemodel-serializers-xml (1.0.2)
activemodel (> 5.x)
activesupport (> 5.x)
builder (~> 3.1)
activerecord (7.0.4)
activemodel (= 7.0.4)
activesupport (= 7.0.4)
activeresource (6.0.0)
activemodel (>= 6.0)
activemodel-serializers-xml (~> 1.0)
activesupport (>= 6.0)
activeresource-response (1.4.0)
activeresource (>= 3, < 6.1)
activestorage (7.0.4)
actionpack (= 7.0.4)
activejob (= 7.0.4)
activerecord (= 7.0.4)
activesupport (= 7.0.4)
marcel (~> 1.0)
mini_mime (>= 1.1.0)
activesupport (7.0.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
ast (2.4.2)
avo (2.20.0)
actionview (>= 6.0)
active_link_to
activerecord (>= 6.0)
addressable
docile
dry-initializer
httparty
inline_svg
meta-tags
pagy
turbo-rails
view_component
zeitwerk (>= 2.6.2)
aws-eventstream (1.2.0)
aws-partitions (1.670.0)
aws-sdk-core (3.168.2)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.5)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.60.0)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.117.2)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sigv4 (1.5.2)
aws-eventstream (~> 1, >= 1.0.2)
bcrypt (3.1.18)
benchmark-ips (2.10.0)
benchmark-malloc (0.2.0)
benchmark-perf (0.6.0)
benchmark-trend (0.4.0)
better_html (2.0.1)
actionview (>= 6.0)
activesupport (>= 6.0)
ast (~> 2.0)
erubi (~> 1.4)
parser (>= 2.4)
smart_properties
bindex (0.8.1)
bootsnap (1.15.0)
msgpack (~> 1.2)
brakeman (5.4.0)
builder (3.2.4)
bullet (7.0.4)
activesupport (>= 3.0.0)
uniform_notifier (~> 1.11)
bundle-audit (0.1.0)
bundler-audit
bundler-audit (0.9.1)
bundler (>= 1.2.0, < 3)
thor (~> 1.0)
byebug (11.1.3)
capybara (3.38.0)
addressable
matrix
mini_mime (>= 0.1.3)
nokogiri (~> 1.8)
rack (>= 1.6.0)
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
caxlsx (3.3.0)
htmlentities (~> 4.3, >= 4.3.4)
marcel (~> 1.0)
nokogiri (~> 1.10, >= 1.10.4)
rubyzip (>= 1.3.0, < 3)
caxlsx_rails (0.6.3)
actionpack (>= 3.1)
caxlsx (>= 3.0)
chartjs-ror (3.7.0)
rails (>= 3.1)
coderay (1.1.3)
concurrent-ruby (1.1.10)
connection_pool (2.3.0)
crack (0.4.5)
rexml
crass (1.0.6)
css_parser (1.12.0)
addressable
cssbundling-rails (1.1.1)
railties (>= 6.0.0)
cucumber (8.0.0)
builder (~> 3.2, >= 3.2.4)
cucumber-ci-environment (~> 9.0, >= 9.0.4)
cucumber-core (~> 11.0, >= 11.0.0)
cucumber-cucumber-expressions (~> 15.1, >= 15.1.1)
cucumber-gherkin (~> 23.0, >= 23.0.1)
cucumber-html-formatter (~> 19.1, >= 19.1.0)
cucumber-messages (~> 18.0, >= 18.0.0)
diff-lcs (~> 1.5, >= 1.5.0)
mime-types (~> 3.4, >= 3.4.1)
multi_test (~> 1.1, >= 1.1.0)
sys-uname (~> 1.2, >= 1.2.2)
cucumber-ci-environment (9.1.0)
cucumber-core (11.0.0)
cucumber-gherkin (~> 23.0, >= 23.0.1)
cucumber-messages (~> 18.0, >= 18.0.0)
cucumber-tag-expressions (~> 4.1, >= 4.1.0)
cucumber-cucumber-expressions (15.2.0)
cucumber-gherkin (23.0.1)
cucumber-messages (~> 18.0, >= 18.0.0)
cucumber-html-formatter (19.2.0)
cucumber-messages (~> 18.0, >= 18.0.0)
cucumber-messages (18.0.0)
cucumber-rails (2.6.1)
capybara (>= 2.18, < 4)
cucumber (>= 3.2, < 9)
mime-types (~> 3.3)
nokogiri (~> 1.10)
railties (>= 5.0, < 8)
rexml (~> 3.0)
webrick (~> 1.7)
cucumber-tag-expressions (4.1.0)
database_cleaner (2.0.1)
database_cleaner-active_record (~> 2.0.0)
database_cleaner-active_record (2.0.1)
activerecord (>= 5.a)
database_cleaner-core (~> 2.0.0)
database_cleaner-core (2.0.1)
dead_end (4.0.0)
derailed_benchmarks (2.1.2)
benchmark-ips (~> 2)
dead_end
get_process_mem (~> 0)
heapy (~> 0)
memory_profiler (>= 0, < 2)
mini_histogram (>= 0.3.0)
rack (>= 1)
rack-test
rake (> 10, < 14)
ruby-statistics (>= 2.1)
thor (>= 0.19, < 2)
diff-lcs (1.5.0)
docile (1.4.0)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
doorkeeper (5.6.2)
railties (>= 5)
dotiw (5.3.3)
activesupport
i18n
dry-core (1.0.0)
concurrent-ruby (~> 1.0)
zeitwerk (~> 2.6)
dry-inflector (1.0.0)
dry-initializer (3.1.1)
dry-logic (1.5.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-types (1.7.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
dry-inflector (~> 1.0, < 2)
dry-logic (>= 1.4, < 2)
zeitwerk (~> 2.6)
erb_lint (0.3.1)
activesupport
better_html (>= 2.0.1)
parser (>= 2.7.1.4)
rainbow
rubocop
smart_properties
erubi (1.11.0)
et-orbi (1.2.7)
tzinfo
factory_bot (6.2.1)
activesupport (>= 5.0.0)
factory_bot_rails (6.2.0)
factory_bot (~> 6.2.0)
railties (>= 5.0.0)
faker (3.0.0)
i18n (>= 1.8.11, < 2)
faraday (2.7.1)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.2)
ffi (1.15.5)
figaro (1.2.0)
thor (>= 0.14.0, < 2)
flipper (0.25.4)
flipper-active_record (0.25.4)
activerecord (>= 4.2, < 8)
flipper (~> 0.25.4)
flipper-ui (0.25.4)
erubi (>= 1.0.0, < 2.0.0)
flipper (~> 0.25.4)
rack (>= 1.4, < 3)
rack-protection (>= 1.5.3, <= 4.0.0)
sanitize (< 7)
foreman (0.87.2)
formatador (1.1.0)
fugit (1.7.2)
et-orbi (~> 1, >= 1.2.7)
raabro (~> 1.4)
gemaina (1.0)
get_process_mem (0.2.7)
ffi (~> 1.0)
globalid (1.0.0)
activesupport (>= 5.0)
good_migrations (0.2.1)
activerecord (>= 3.1)
railties (>= 3.1)
google-protobuf (3.21.10)
google-protobuf (3.21.10-x86_64-linux)
guard (2.18.0)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
lumberjack (>= 1.0.12, < 2.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.13.0)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-compat (1.2.1)
guard-rspec (4.7.3)
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
guard-rubocop (1.5.0)
guard (~> 2.0)
rubocop (< 2.0)
hashdiff (1.0.1)
hashie (5.0.0)
health_bit (0.2.0)
rack
heapy (0.2.0)
thor
htmlbeautifier (1.4.2)
htmlentities (4.3.4)
http-accept (1.7.0)
http-cookie (1.0.5)
domain_name (~> 0.5)
httparty (0.20.0)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
inline_svg (1.8.0)
activesupport (>= 3.0)
nokogiri (>= 1.6)
jbuilder (2.11.5)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
jmespath (1.6.2)
job-iteration (1.3.6)
activejob (>= 5.2)
jsbundling-rails (1.0.3)
railties (>= 6.0.0)
json (2.6.2)
jwt (2.5.0)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.19.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lookbook (1.4.1)
actioncable
activemodel
css_parser
htmlbeautifier (~> 1.3)
htmlentities (~> 4.3.4)
listen (~> 3.0)
railties (>= 5.0)
redcarpet (~> 3.5)
rouge (>= 3.26, < 5.0)
view_component (~> 2.0)
yard (~> 0.9.25)
zeitwerk (~> 2.5)
lumberjack (1.2.8)
mail (2.7.1)
mini_mime (>= 0.1.1)
mailjet (1.7.1)
activesupport (>= 3.1.0)
rack (>= 1.4.0)
rest-client (>= 2.0.0)
maintenance_tasks (2.0.0)
actionpack (>= 6.0)
activejob (>= 6.0)
activerecord (>= 6.0)
job-iteration (~> 1.3.6)
railties (>= 6.0)
marcel (1.0.2)
matrix (0.4.2)
memory_profiler (1.0.1)
meta-tags (2.18.0)
actionpack (>= 3.2.0, < 7.1)
method_source (1.0.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mini_histogram (0.3.1)
mini_mime (1.1.2)
mini_portile2 (2.8.0)
minitest (5.16.3)
msgpack (1.6.0)
multi_test (1.1.0)
multi_xml (0.6.0)
nenv (0.3.0)
net-imap (0.3.1)
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.1.3)
timeout
net-smtp (0.3.3)
net-protocol
netrc (0.11.0)
nio4r (2.5.8)
nokogiri (1.13.9)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nokogiri (1.13.9-x86_64-linux)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
shellany (~> 0.0)
oauth (0.6.2)
snaky_hash (~> 2.0)
version_gem (~> 1.1)
oauth2 (2.0.9)
faraday (>= 0.17.3, < 3.0)
jwt (>= 1.0, < 3.0)
multi_xml (~> 0.5)
rack (>= 1.2, < 4)
snaky_hash (~> 2.0)
version_gem (~> 1.1)
pagy (5.10.1)
activesupport
parallel (1.22.1)
parser (3.1.3.0)
ast (~> 2.4.1)
pg (1.4.5)
pg_query (2.2.0)
google-protobuf (>= 3.19.2)
pghero (3.0.1)
activerecord (>= 6)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (5.0.0)
puma (6.0.0)
nio4r (~> 2.0)
raabro (1.4.0)
racc (1.6.0)
rack (2.2.4)
rack-cors (1.1.1)
rack (>= 2.0.0)
rack-mini-profiler (3.0.0)
rack (>= 1.2.0)
rack-protection (3.0.4)
rack
rack-test (2.0.2)
rack (>= 1.3)
rails (7.0.4)
actioncable (= 7.0.4)
actionmailbox (= 7.0.4)
actionmailer (= 7.0.4)
actionpack (= 7.0.4)
actiontext (= 7.0.4)
actionview (= 7.0.4)
activejob (= 7.0.4)
activemodel (= 7.0.4)
activerecord (= 7.0.4)
activestorage (= 7.0.4)
activesupport (= 7.0.4)
bundler (>= 1.15.0)
railties (= 7.0.4)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.4.3)
loofah (~> 2.3)
railties (7.0.4)
actionpack (= 7.0.4)
activesupport (= 7.0.4)
method_source
rake (>= 12.2)
thor (~> 1.0)
zeitwerk (~> 2.5)
rainbow (3.1.1)
rake (13.0.6)
ransack (3.2.1)
activerecord (>= 6.1.5)
activesupport (>= 6.1.5)
i18n
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
recaptcha (5.12.3)
json
redcarpet (3.5.1)
redis-client (0.11.2)
connection_pool
regexp_parser (2.6.1)
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rexml (3.2.5)
rouge (4.0.0)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-benchmark (0.6.0)
benchmark-malloc (~> 0.2)
benchmark-perf (~> 0.6)
benchmark-trend (~> 0.4)
rspec (>= 3.0)
rspec-core (3.12.0)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-rails (6.0.1)
actionpack (>= 6.1)
activesupport (>= 6.1)
railties (>= 6.1)
rspec-core (~> 3.11)
rspec-expectations (~> 3.11)
rspec-mocks (~> 3.11)
rspec-support (~> 3.11)
rspec-sidekiq (3.1.0)
rspec-core (~> 3.0, >= 3.0.0)
sidekiq (>= 2.4.0)
rspec-sqlimit (0.0.5)
activerecord (> 4.2, < 7.1)
rspec (~> 3.0)
rspec-support (3.12.0)
rspec_junit_formatter (0.6.0)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (1.39.0)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.1.2.1)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.23.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.24.0)
parser (>= 3.1.1.0)
rubocop-performance (1.15.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.17.3)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
rubocop-rspec (2.15.0)
rubocop (~> 1.33)
ruby-next-core (0.15.3)
ruby-prof (1.4.3)
ruby-progressbar (1.11.0)
ruby-statistics (3.0.1)
ruby2_keywords (0.0.5)
rubyXL (3.4.25)
nokogiri (>= 1.10.8)
rubyzip (>= 1.3.0)
rubyzip (2.3.2)
sanitize (6.0.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
scout_apm (5.3.2)
parser
selenium-webdriver (4.7.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
sentry-rails (5.7.0)
railties (>= 5.0)
sentry-ruby (~> 5.7.0)
sentry-ruby (5.7.0)
concurrent-ruby (~> 1.0, >= 1.0.2)
sentry-sidekiq (5.7.0)
sentry-ruby (~> 5.7.0)
sidekiq (>= 3.0)
shellany (0.0.1)
sidekiq (7.0.2)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.11.0)
sidekiq-batch (0.1.9)
sidekiq (>= 3)
sidekiq-cron (1.9.0)
fugit (~> 1)
sidekiq (>= 4.2.1)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
smart_properties (1.17.0)
snaky_hash (2.0.1)
hashie
version_gem (~> 1.1, >= 1.1.1)
sorcery (0.16.4)
bcrypt (~> 3.1)
oauth (~> 0.5, >= 0.5.5)
oauth2 (~> 2.0)
spring (4.1.0)
spring-watcher-listen (2.1.0)
listen (>= 2.7, < 4.0)
spring (>= 4)
squasher (0.7.0)
stackprof (0.2.23)
stimulus-rails (1.2.1)
railties (>= 6.0.0)
sys-uname (1.2.2)
ffi (~> 1.1)
test-prof (1.0.11)
thor (1.2.1)
timeout (0.3.0)
turbo-rails (1.3.2)
actionpack (>= 6.0.0)
activejob (>= 6.0.0)
railties (>= 6.0.0)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (2.3.0)
uniform_notifier (1.16.0)
vcr (6.1.0)
version_gem (1.1.1)
view_component (2.78.0)
activesupport (>= 5.0.0, < 8.0)
concurrent-ruby (~> 1.0)
method_source (~> 1.0)
view_component-contrib (0.1.1)
ruby-next-core (>= 0.12.0)
view_component
web-console (4.2.0)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webdrivers (5.2.0)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (~> 4.0)
webmock (3.18.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.7.0)
websocket (1.2.9)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
xpath (3.2.0)
nokogiri (~> 1.8)
yard (0.9.28)
webrick (~> 1.7.0)
zeitwerk (2.6.6)
PLATFORMS
ruby
x86_64-linux
DEPENDENCIES
action_policy
active_record_extended
activeresource
activeresource-response
avo
aws-sdk-s3
benchmark-ips
bootsnap
brakeman
bullet
bundle-audit
byebug
capybara
caxlsx
caxlsx_rails
chartjs-ror
cssbundling-rails
cucumber-rails
database_cleaner
derailed_benchmarks
doorkeeper
dotiw
dry-initializer
dry-types
erb_lint
factory_bot_rails
faker
figaro
flipper-active_record
flipper-ui
foreman
gemaina
good_migrations
guard
guard-rspec
guard-rubocop
health_bit
jbuilder
jsbundling-rails
jwt
listen
lookbook
mailjet
maintenance_tasks
memory_profiler
pagy
pg
pg_query
pghero
puma
rack-cors
rack-mini-profiler
rails
ransack
recaptcha
rest-client
rspec-benchmark
rspec-rails
rspec-sidekiq
rspec-sqlimit
rspec_junit_formatter
rubocop
rubocop-performance
rubocop-rails
rubocop-rspec
ruby-prof
rubyXL
rubyzip
scout_apm
selenium-webdriver
sentry-rails
sentry-ruby
sentry-sidekiq
sidekiq
sidekiq-batch
sidekiq-cron
simplecov
sorcery
spring
spring-watcher-listen
squasher
stackprof
stimulus-rails
test-prof
turbo-rails
tzinfo-data
vcr
view_component
view_component-contrib
web-console
webdrivers
webmock
zeitwerk
RUBY VERSION
ruby 2.7.2p137
BUNDLED WITH
2.2.23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment