Created
January 9, 2023 13:27
-
-
Save jimmynguyc/45ee5b714eabf53a23bc2d8ca204e6dd to your computer and use it in GitHub Desktop.
my bundle env
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ bundle env | |
## Environment | |
``` | |
Bundler 2.4.1 | |
Platforms ruby, arm64-darwin-21 | |
Ruby 3.1.2p20 (2022-04-12 revision 4491bb740a9506d76391ac44bb2fe6e483fec952) [arm64-darwin-21] | |
Full Path /Users/jimmy/.rubies/ruby-3.1.2ossl3/bin/ruby | |
Config Dir /Users/jimmy/.rubies/ruby-3.1.2ossl3/etc | |
RubyGems 3.3.7 | |
Gem Home /Users/jimmy/.gem/ruby/3.1.2 | |
Gem Path /Users/jimmy/.gem/ruby/3.1.2:/Users/jimmy/.rubies/ruby-3.1.2ossl3/lib/ruby/gems/3.1.0 | |
User Home /Users/jimmy | |
User Path /Users/jimmy/.gem/ruby/3.1.0 | |
Bin Dir /Users/jimmy/.gem/ruby/3.1.2/bin | |
Tools | |
Git 2.36.1 | |
RVM not installed | |
rbenv not installed | |
chruby 0.3.9 | |
``` | |
## Bundler Build Metadata | |
``` | |
Built At 2022-12-24 | |
Git SHA f3175f033c | |
Released Version true | |
``` | |
## Bundler settings | |
``` | |
enterprise.contribsys.com | |
Set for the current user (/Users/jimmy/.bundle/config): "a1d179d6:[REDACTED]" | |
github.https | |
Set for the current user (/Users/jimmy/.bundle/config): "true" | |
``` | |
## Gemfile | |
### Gemfile | |
```ruby | |
source "https://rubygems.org" | |
ruby "3.1.2" | |
# Application dependencies | |
gem "aws-sdk-s3" | |
gem "bcrypt", "~> 3.1.7" | |
gem "countries", "~> 5.3" # For country information | |
gem "fast_excel" # Simple excel generation gem | |
gem "hamlit" | |
gem "hashids", "~> 1.0", ">= 1.0.5" # Obfuscate record IDs from the URLs | |
gem "high_voltage", "~> 3.1", ">= 3.1.2" # api docs | |
gem "honeybadger" # Error reporting | |
gem "httparty" | |
gem "jwt" # OAUTH JSON Webtoken | |
gem "mail", "= 2.7.1" # See patch in /lib. Venue & AGS communication is done via SMTP/POP3 | |
gem "mini_portile2", "= 2.8.0" | |
gem "mini_magick", ">= 4.9.4" # For UPS label GIF->PDF conversion | |
gem "nokogiri" # XMl/HTML parsing | |
gem "nokogiri-happymapper" | |
gem "oj" # fast JSON conversion lib | |
gem "pdf-reader" # Read PDF mail attachments | |
gem "pg", "~> 1.2" | |
gem "postmark-rails" # Email delivery | |
gem "prawn-svg", "~> 0.31" # Allows rendering SVG in prawn documents | |
gem "prawn-rails" # PDF generation | |
gem "pry-rails" # Proper console | |
gem "puma", "~> 6.0" | |
gem "rack-attack" # Rate limiting | |
gem "rails", "~> 7.0" | |
gem "connection_pool", "~> 2.2" # Connection Pooling used for Redis (and Sidekiq) | |
gem "rubyXL", "~> 3.3" # Generating LGG reports | |
gem "rubyzip", "~> 2.3", ">= 2.3.2" # Zip & unzip | |
gem "signer" | |
gem "turbo-rails" | |
gem "stimulus-rails" | |
gem "strong_migrations" | |
gem "view_component", "~> 2.55" | |
gem "will_paginate", "~> 3.2" | |
gem "addressable", "~> 2.8" # Used for URI manipulation | |
gem "ed25519", ">= 1.2", "< 2.0" # required for decoding OpenSSH keys | |
gem "bcrypt_pbkdf", ">= 1.0", "< 2.0" # required for decoding OpenSSH keys | |
gem "webpacker", "~> 5.4" | |
gem "tzinfo-data", "~> 1.2020" # timezones data | |
gem "graphql", "~> 2.0.2" | |
gem "ar_lazy_preload", "~> 1.0.0" | |
gem "rails-i18n", "~> 7.0" # Error message localization collection | |
gem "activerecord-cte" | |
gem "dry-monads", "~> 1.4" | |
gem "money-rails", "~>1.12" | |
gem "scenic", "~> 1.6" # ~scenic~ materialized views | |
gem "image_processing" | |
gem "rss" | |
gem "rails-autoscale-web", "~> 1.0" # heroku rails-autoscale addon | |
gem "rails-autoscale-sidekiq", "~> 1.0" # heroku rails-autoscale addon | |
gem "redis", "~> 5.0" # Used for Redis cache store as well | |
# Things that are only used in jobs / on the console or required conditionally | |
# that don't have to be required always. | |
gem "bootsnap", ">= 1.3.2", require: false # Reduces boot times through caching; required in config/boot.rb | |
gem "colorize", require: false # Colorizes strings for terminal | |
gem "net-sftp", require: false # For connecting to sftp servers (DHL) | |
gem "sinatra", require: false # We need sinatra to display the Sidekiq web console | |
gem "msgpack", "~> 1.5", require: false # Used for redis streams nested object serialization | |
gem "hashie", "~> 5.0", require: false # Ruby hash extensions | |
gem "ruby-pg-extras", "~> 4.9", require: false # Ruby port of heroku pg:extras | |
# Gems that were removed from standard rubygems | |
gem "net-ftp", "~> 0.1" | |
gem "net-pop", "~> 0.1.1" | |
gem "net-smtp", "~> 0.3.1" | |
gem "matrix", "~> 0.4.2" | |
gem "net-imap", "~> 0.2" | |
# Sidekiq pro & enterprise. Needs license key configured via bundle config | |
source "https://enterprise.contribsys.com/" do | |
gem "sidekiq-ent", "< 8" | |
gem "sidekiq-pro", "< 8" | |
end | |
group :production do | |
gem "scout_apm", "~> 5.1" | |
end | |
group :development, :test do | |
# Use dotenv to load .env into ENV | |
gem "dotenv-rails" | |
# These need to live here so they affect the generators as well | |
gem "rspec-rails", "~> 6.0" | |
# Until rspec supports parallel testing | |
gem "parallel_tests" | |
gem "byebug" | |
end | |
group :development do | |
gem "active_record_query_trace" | |
gem "graphiql-rails" | |
gem "letter_opener" | |
gem "listen", "~> 3.1" | |
gem "rack-mini-profiler" | |
gem "standard", "~> 1.0" | |
gem "sql_queries_count" | |
end | |
group :test do | |
gem "factory_bot_rails" | |
gem "webmock" | |
# extracted template assertions, etc. since Rails 5 | |
gem "rails-controller-testing" | |
gem "rspec-collection_matchers" | |
gem "rspec-its" | |
gem "rspec_junit_formatter" | |
gem "test-prof", "~> 1.0" | |
gem "capybara" | |
end | |
# AppOptics specifically requests the gem to be listed at the end | |
gem "appoptics_apm" # Metrics and Instrumentation | |
``` | |
### Gemfile.lock | |
``` | |
GEM | |
remote: https://enterprise.contribsys.com/ | |
specs: | |
sidekiq-ent (7.0.2) | |
einhorn (~> 1.0) | |
sidekiq (>= 7.0.0, < 8) | |
sidekiq-pro (>= 7.0.0, < 8) | |
sidekiq-pro (7.0.5) | |
sidekiq (>= 7.0.0, < 8) | |
GEM | |
remote: https://rubygems.org/ | |
specs: | |
Ascii85 (1.1.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_record_query_trace (1.8) | |
activejob (7.0.4) | |
activesupport (= 7.0.4) | |
globalid (>= 0.3.6) | |
activemodel (7.0.4) | |
activesupport (= 7.0.4) | |
activerecord (7.0.4) | |
activemodel (= 7.0.4) | |
activesupport (= 7.0.4) | |
activerecord-cte (0.2.0) | |
activerecord | |
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) | |
afm (0.2.2) | |
appoptics_apm (4.13.0) | |
json (~> 2.0) | |
no_proxy_fix (~> 0.1.2, >= 0.1.2) | |
ar_lazy_preload (1.0.0) | |
rails (>= 5.2) | |
ast (2.4.2) | |
aws-eventstream (1.2.0) | |
aws-partitions (1.598.0) | |
aws-sdk-core (3.131.1) | |
aws-eventstream (~> 1, >= 1.0.2) | |
aws-partitions (~> 1, >= 1.525.0) | |
aws-sigv4 (~> 1.1) | |
jmespath (~> 1, >= 1.6.1) | |
aws-sdk-kms (1.57.0) | |
aws-sdk-core (~> 3, >= 3.127.0) | |
aws-sigv4 (~> 1.1) | |
aws-sdk-s3 (1.114.0) | |
aws-sdk-core (~> 3, >= 3.127.0) | |
aws-sdk-kms (~> 1) | |
aws-sigv4 (~> 1.4) | |
aws-sigv4 (1.5.0) | |
aws-eventstream (~> 1, >= 1.0.2) | |
bcrypt (3.1.18) | |
bcrypt_pbkdf (1.1.0) | |
bootsnap (1.13.0) | |
msgpack (~> 1.2) | |
builder (3.2.4) | |
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) | |
coderay (1.1.2) | |
colorize (0.8.1) | |
concurrent-ruby (1.1.10) | |
connection_pool (2.3.0) | |
countries (5.3.0) | |
unaccent (~> 0.3) | |
crack (0.4.5) | |
rexml | |
crass (1.0.6) | |
css_parser (1.9.0) | |
addressable | |
date (3.2.2) | |
diff-lcs (1.5.0) | |
dotenv (2.8.1) | |
dotenv-rails (2.8.1) | |
dotenv (= 2.8.1) | |
railties (>= 3.2) | |
dry-core (0.7.1) | |
concurrent-ruby (~> 1.0) | |
dry-monads (1.4.0) | |
concurrent-ruby (~> 1.0) | |
dry-core (~> 0.7) | |
ed25519 (1.3.0) | |
einhorn (1.0.0) | |
erubi (1.12.0) | |
factory_bot (6.2.0) | |
activesupport (>= 5.0.0) | |
factory_bot_rails (6.2.0) | |
factory_bot (~> 6.2.0) | |
railties (>= 5.0.0) | |
fast_excel (0.4.0) | |
ffi (> 1.9, < 2) | |
ffi (1.15.5) | |
globalid (1.0.0) | |
activesupport (>= 5.0) | |
graphiql-rails (1.8.0) | |
railties | |
sprockets-rails | |
graphql (2.0.15) | |
hamlit (3.0.1) | |
temple (>= 0.8.2) | |
thor | |
tilt | |
hashdiff (1.0.1) | |
hashery (2.1.2) | |
hashids (1.0.6) | |
hashie (5.0.0) | |
high_voltage (3.1.2) | |
honeybadger (4.12.2) | |
httparty (0.21.0) | |
mini_mime (>= 1.0.0) | |
multi_xml (>= 0.5.2) | |
i18n (1.12.0) | |
concurrent-ruby (~> 1.0) | |
image_processing (1.12.2) | |
mini_magick (>= 4.9.5, < 5) | |
ruby-vips (>= 2.0.17, < 3) | |
jmespath (1.6.1) | |
json (2.6.3) | |
jwt (2.5.0) | |
language_server-protocol (3.17.0.2) | |
launchy (2.5.0) | |
addressable (~> 2.7) | |
letter_opener (1.8.1) | |
launchy (>= 2.2, < 3) | |
listen (3.7.1) | |
rb-fsevent (~> 0.10, >= 0.10.3) | |
rb-inotify (~> 0.9, >= 0.9.10) | |
loofah (2.19.1) | |
crass (~> 1.0.2) | |
nokogiri (>= 1.5.9) | |
mail (2.7.1) | |
mini_mime (>= 0.1.1) | |
marcel (1.0.2) | |
matrix (0.4.2) | |
method_source (1.0.0) | |
mini_magick (4.11.0) | |
mini_mime (1.1.2) | |
mini_portile2 (2.8.0) | |
minitest (5.16.3) | |
monetize (1.12.0) | |
money (~> 6.12) | |
money (6.16.0) | |
i18n (>= 0.6.4, <= 2) | |
money-rails (1.15.0) | |
activesupport (>= 3.0) | |
monetize (~> 1.9) | |
money (~> 6.13) | |
railties (>= 3.0) | |
msgpack (1.6.0) | |
multi_xml (0.6.0) | |
mustermann (3.0.0) | |
ruby2_keywords (~> 0.0.1) | |
net-ftp (0.2.0) | |
net-protocol | |
time | |
net-imap (0.3.1) | |
net-protocol | |
net-pop (0.1.2) | |
net-protocol | |
net-protocol (0.2.1) | |
timeout | |
net-sftp (4.0.0) | |
net-ssh (>= 5.0.0, < 8.0.0) | |
net-smtp (0.3.3) | |
net-protocol | |
net-ssh (7.0.1) | |
nio4r (2.5.8) | |
no_proxy_fix (0.1.2) | |
nokogiri (1.13.10) | |
mini_portile2 (~> 2.8.0) | |
racc (~> 1.4) | |
nokogiri (1.13.10-aarch64-linux) | |
racc (~> 1.4) | |
nokogiri (1.13.10-arm64-darwin) | |
racc (~> 1.4) | |
nokogiri (1.13.10-x86_64-linux) | |
racc (~> 1.4) | |
nokogiri-happymapper (0.9.0) | |
nokogiri (~> 1.5) | |
oj (3.13.21) | |
parallel (1.22.1) | |
parallel_tests (3.13.0) | |
parallel | |
parser (3.2.0.0) | |
ast (~> 2.4.1) | |
pdf-core (0.9.0) | |
pdf-reader (2.11.0) | |
Ascii85 (~> 1.0) | |
afm (~> 0.2.1) | |
hashery (~> 2.0) | |
ruby-rc4 | |
ttfunk | |
pg (1.4.4) | |
postmark (1.22.1) | |
json | |
postmark-rails (0.22.1) | |
actionmailer (>= 3.0.0) | |
postmark (>= 1.21.3, < 2.0) | |
prawn (2.4.0) | |
pdf-core (~> 0.9.0) | |
ttfunk (~> 1.7) | |
prawn-rails (1.4.2) | |
actionview (>= 3.1.0) | |
prawn | |
prawn-table | |
prawn-svg (0.32.0) | |
css_parser (~> 1.6) | |
prawn (>= 0.11.1, < 3) | |
rexml (~> 3.2) | |
prawn-table (0.2.2) | |
prawn (>= 1.3.0, < 3.0.0) | |
pry (0.13.0) | |
coderay (~> 1.1) | |
method_source (~> 1.0) | |
pry-rails (0.3.9) | |
pry (>= 0.10.4) | |
public_suffix (5.0.1) | |
puma (6.0.0) | |
nio4r (~> 2.0) | |
racc (1.6.2) | |
rack (2.2.5) | |
rack-attack (6.6.1) | |
rack (>= 1.0, < 3) | |
rack-mini-profiler (3.0.0) | |
rack (>= 1.2.0) | |
rack-protection (3.0.4) | |
rack | |
rack-proxy (0.7.0) | |
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-autoscale-core (1.2.3) | |
rails-autoscale-sidekiq (1.2.3) | |
rails-autoscale-core (= 1.2.3) | |
sidekiq (>= 5.0) | |
rails-autoscale-web (1.2.3) | |
rails-autoscale-core (= 1.2.3) | |
railties | |
rails-controller-testing (1.0.5) | |
actionpack (>= 5.0.1.rc1) | |
actionview (>= 5.0.1.rc1) | |
activesupport (>= 5.0.1.rc1) | |
rails-dom-testing (2.0.3) | |
activesupport (>= 4.2.0) | |
nokogiri (>= 1.6) | |
rails-html-sanitizer (1.4.4) | |
loofah (~> 2.19, >= 2.19.1) | |
rails-i18n (7.0.5) | |
i18n (>= 0.7, < 2) | |
railties (>= 6.0.0, < 8) | |
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) | |
rb-fsevent (0.11.1) | |
rb-inotify (0.10.1) | |
ffi (~> 1.0) | |
redis (5.0.5) | |
redis-client (>= 0.9.0) | |
redis-client (0.11.2) | |
connection_pool | |
regexp_parser (2.6.1) | |
rexml (3.2.5) | |
rspec-collection_matchers (1.2.0) | |
rspec-expectations (>= 2.99.0.beta1) | |
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-its (1.3.0) | |
rspec-core (>= 3.0.0) | |
rspec-expectations (>= 3.0.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-support (3.12.0) | |
rspec_junit_formatter (0.6.0) | |
rspec-core (>= 2, < 4, != 2.12.0) | |
rss (0.2.9) | |
rexml | |
rubocop (1.42.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.24.1, < 2.0) | |
ruby-progressbar (~> 1.7) | |
unicode-display_width (>= 1.4.0, < 3.0) | |
rubocop-ast (1.24.1) | |
parser (>= 3.1.1.0) | |
rubocop-performance (1.15.2) | |
rubocop (>= 1.7.0, < 2.0) | |
rubocop-ast (>= 0.4.0) | |
ruby-pg-extras (4.9.0) | |
pg | |
terminal-table | |
ruby-progressbar (1.11.0) | |
ruby-rc4 (0.1.5) | |
ruby-vips (2.1.4) | |
ffi (~> 1.12) | |
ruby2_keywords (0.0.5) | |
rubyXL (3.4.25) | |
nokogiri (>= 1.10.8) | |
rubyzip (>= 1.3.0) | |
rubyzip (2.3.2) | |
scenic (1.6.0) | |
activerecord (>= 4.0.0) | |
railties (>= 4.0.0) | |
scout_apm (5.3.2) | |
parser | |
semantic_range (3.0.0) | |
sidekiq (7.0.2) | |
concurrent-ruby (< 2) | |
connection_pool (>= 2.3.0) | |
rack (>= 2.2.4) | |
redis-client (>= 0.11.0) | |
signer (1.10.0) | |
nokogiri (>= 1.5.1, != 1.12.3, != 1.12.2, != 1.12.1, != 1.12.0) | |
sinatra (3.0.4) | |
mustermann (~> 3.0) | |
rack (~> 2.2, >= 2.2.4) | |
rack-protection (= 3.0.4) | |
tilt (~> 2.0) | |
sprockets (4.0.2) | |
concurrent-ruby (~> 1.0) | |
rack (> 1, < 3) | |
sprockets-rails (3.4.2) | |
actionpack (>= 5.2) | |
activesupport (>= 5.2) | |
sprockets (>= 3.0.0) | |
sql_queries_count (0.0.1) | |
rails (> 3.0.0) | |
standard (1.21.1) | |
language_server-protocol (~> 3.17.0.2) | |
rubocop (= 1.42.0) | |
rubocop-performance (= 1.15.2) | |
stimulus-rails (1.1.0) | |
railties (>= 6.0.0) | |
strong_migrations (1.3.2) | |
activerecord (>= 5.2) | |
temple (0.8.2) | |
terminal-table (3.0.2) | |
unicode-display_width (>= 1.1.1, < 3) | |
test-prof (1.0.10) | |
thor (1.2.1) | |
tilt (2.0.11) | |
time (0.2.0) | |
date | |
timeout (0.3.1) | |
ttfunk (1.7.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) | |
tzinfo-data (1.2022.3) | |
tzinfo (>= 1.0.0) | |
unaccent (0.4.0) | |
unicode-display_width (2.4.2) | |
view_component (2.74.0) | |
activesupport (>= 5.0.0, < 8.0) | |
concurrent-ruby (~> 1.0) | |
method_source (~> 1.0) | |
webmock (3.18.1) | |
addressable (>= 2.8.0) | |
crack (>= 0.3.2) | |
hashdiff (>= 0.4.0, < 2.0.0) | |
webpacker (5.4.3) | |
activesupport (>= 5.2) | |
rack-proxy (>= 0.6.1) | |
railties (>= 5.2) | |
semantic_range (>= 2.3.0) | |
websocket-driver (0.7.5) | |
websocket-extensions (>= 0.1.0) | |
websocket-extensions (0.1.5) | |
will_paginate (3.3.1) | |
xpath (3.2.0) | |
nokogiri (~> 1.8) | |
zeitwerk (2.6.6) | |
PLATFORMS | |
aarch64-linux-musl | |
arm64-darwin | |
ruby | |
x86_64-linux | |
x86_64-linux-musl | |
DEPENDENCIES | |
active_record_query_trace | |
activerecord-cte | |
addressable (~> 2.8) | |
appoptics_apm | |
ar_lazy_preload (~> 1.0.0) | |
aws-sdk-s3 | |
bcrypt (~> 3.1.7) | |
bcrypt_pbkdf (>= 1.0, < 2.0) | |
bootsnap (>= 1.3.2) | |
byebug | |
capybara | |
colorize | |
connection_pool (~> 2.2) | |
countries (~> 5.3) | |
dotenv-rails | |
dry-monads (~> 1.4) | |
ed25519 (>= 1.2, < 2.0) | |
factory_bot_rails | |
fast_excel | |
graphiql-rails | |
graphql (~> 2.0.2) | |
hamlit | |
hashids (~> 1.0, >= 1.0.5) | |
hashie (~> 5.0) | |
high_voltage (~> 3.1, >= 3.1.2) | |
honeybadger | |
httparty | |
image_processing | |
jwt | |
letter_opener | |
listen (~> 3.1) | |
mail (= 2.7.1) | |
matrix (~> 0.4.2) | |
mini_magick (>= 4.9.4) | |
mini_portile2 (= 2.8.0) | |
money-rails (~> 1.12) | |
msgpack (~> 1.5) | |
net-ftp (~> 0.1) | |
net-imap (~> 0.2) | |
net-pop (~> 0.1.1) | |
net-sftp | |
net-smtp (~> 0.3.1) | |
nokogiri | |
nokogiri-happymapper | |
oj | |
parallel_tests | |
pdf-reader | |
pg (~> 1.2) | |
postmark-rails | |
prawn-rails | |
prawn-svg (~> 0.31) | |
pry-rails | |
puma (~> 6.0) | |
rack-attack | |
rack-mini-profiler | |
rails (~> 7.0) | |
rails-autoscale-sidekiq (~> 1.0) | |
rails-autoscale-web (~> 1.0) | |
rails-controller-testing | |
rails-i18n (~> 7.0) | |
redis (~> 5.0) | |
rspec-collection_matchers | |
rspec-its | |
rspec-rails (~> 6.0) | |
rspec_junit_formatter | |
rss | |
ruby-pg-extras (~> 4.9) | |
rubyXL (~> 3.3) | |
rubyzip (~> 2.3, >= 2.3.2) | |
scenic (~> 1.6) | |
scout_apm (~> 5.1) | |
sidekiq-ent (< 8)! | |
sidekiq-pro (< 8)! | |
signer | |
sinatra | |
sql_queries_count | |
standard (~> 1.0) | |
stimulus-rails | |
strong_migrations | |
test-prof (~> 1.0) | |
turbo-rails | |
tzinfo-data (~> 1.2020) | |
view_component (~> 2.55) | |
webmock | |
webpacker (~> 5.4) | |
will_paginate (~> 3.2) | |
RUBY VERSION | |
ruby 3.1.2p20 | |
BUNDLED WITH | |
2.4.1 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment