mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
89801b2a43
ruby/debug is a new debugger that is going to ship with CRuby. It makes sense for Rails to switch to this one because that is where the language is heading, and because Byebug is not fully compatible with Zeitwerk. See https://github.com/deivid-rodriguez/byebug/issues/564 While ruby/debug has not been heavily tested with Zeitwerk, casual usage seems to suggest it works without issues, including explicit namespaces, which is where Byebug and Zeitwerk conflict. Byebug is terrific, thanks a lot for all these years. ❤️
189 lines
5.2 KiB
Ruby
189 lines
5.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
gemspec
|
|
|
|
# We need a newish Rake since Active Job sets its test tasks' descriptions.
|
|
gem "rake", ">= 11.1"
|
|
|
|
gem "capybara", ">= 3.26"
|
|
gem "selenium-webdriver", ">= 4.0.0.alpha7"
|
|
|
|
gem "rack-cache", "~> 1.2"
|
|
gem "stimulus-rails"
|
|
gem "turbo-rails"
|
|
gem "jsbundling-rails"
|
|
gem "cssbundling-rails"
|
|
gem "importmap-rails"
|
|
gem "tailwindcss-rails"
|
|
# require: false so bcrypt is loaded only when has_secure_password is used.
|
|
# This is to avoid Active Model (and by extension the entire framework)
|
|
# being dependent on a binary library.
|
|
gem "bcrypt", "~> 3.1.11", require: false
|
|
|
|
# This needs to be with require false to avoid it being automatically loaded by
|
|
# sprockets.
|
|
gem "terser", ">= 1.1.4", require: false
|
|
|
|
# Explicitly avoid 1.x that doesn't support Ruby 2.4+
|
|
gem "json", ">= 2.0.0"
|
|
|
|
group :rubocop do
|
|
gem "rubocop", ">= 0.90", require: false
|
|
gem "rubocop-minitest", require: false
|
|
gem "rubocop-packaging", require: false
|
|
gem "rubocop-performance", require: false
|
|
gem "rubocop-rails", require: false
|
|
end
|
|
|
|
group :doc do
|
|
gem "sdoc", ">= 2.2.0"
|
|
gem "redcarpet", "~> 3.2.3", platforms: :ruby
|
|
gem "w3c_validators", "~> 1.3.6"
|
|
gem "kindlerb", "~> 1.2.0"
|
|
gem "rouge"
|
|
end
|
|
|
|
# Active Support
|
|
gem "dalli"
|
|
gem "listen", "~> 3.3", require: false
|
|
gem "libxml-ruby", platforms: :ruby
|
|
gem "connection_pool", require: false
|
|
gem "rexml", require: false
|
|
|
|
# for railties
|
|
gem "bootsnap", ">= 1.4.4", require: false
|
|
gem "webrick", require: false
|
|
|
|
# Active Job
|
|
group :job do
|
|
gem "resque", require: false
|
|
gem "resque-scheduler", require: false
|
|
gem "sidekiq", require: false
|
|
gem "sucker_punch", require: false
|
|
gem "delayed_job", require: false
|
|
gem "queue_classic", github: "QueueClassic/queue_classic", require: false, platforms: :ruby
|
|
gem "sneakers", require: false
|
|
gem "que", require: false
|
|
gem "backburner", require: false
|
|
gem "delayed_job_active_record", require: false
|
|
gem "sequel", require: false
|
|
end
|
|
|
|
# Action Cable
|
|
group :cable do
|
|
gem "puma", require: false
|
|
|
|
gem "hiredis", require: false
|
|
gem "redis", "~> 4.0", require: false
|
|
|
|
gem "redis-namespace"
|
|
|
|
gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false
|
|
end
|
|
|
|
# Active Storage
|
|
group :storage do
|
|
gem "aws-sdk-s3", require: false
|
|
gem "google-cloud-storage", "~> 1.11", require: false
|
|
gem "azure-storage-blob", "~> 2.0", require: false
|
|
|
|
gem "image_processing", "~> 1.2"
|
|
end
|
|
|
|
# Action Mailbox
|
|
gem "aws-sdk-sns", require: false
|
|
gem "webmock"
|
|
|
|
group :ujs do
|
|
gem "webdrivers"
|
|
end
|
|
|
|
# Action View
|
|
group :view do
|
|
gem "blade", require: false, platforms: [:ruby]
|
|
gem "sprockets-export", require: false
|
|
end
|
|
|
|
# Add your own local bundler stuff.
|
|
local_gemfile = File.expand_path(".Gemfile", __dir__)
|
|
instance_eval File.read local_gemfile if File.exist? local_gemfile
|
|
|
|
group :test do
|
|
gem "minitest-bisect"
|
|
gem "minitest-ci", require: false
|
|
gem "minitest-retry"
|
|
|
|
platforms :mri do
|
|
gem "stackprof"
|
|
gem "debug", ">= 1.0.0.rc", require: false
|
|
end
|
|
|
|
gem "benchmark-ips"
|
|
end
|
|
|
|
platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
|
|
gem "nokogiri", ">= 1.8.1", "!= 1.11.0"
|
|
|
|
# Needed for compiling the ActionDispatch::Journey parser.
|
|
gem "racc", ">=1.4.6", require: false
|
|
|
|
# Active Record.
|
|
gem "sqlite3", "~> 1.4"
|
|
|
|
group :db do
|
|
gem "pg", "~> 1.1"
|
|
gem "mysql2", "~> 0.5", github: "brianmario/mysql2"
|
|
end
|
|
end
|
|
|
|
platforms :jruby do
|
|
if ENV["AR_JDBC"]
|
|
gem "activerecord-jdbcsqlite3-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
|
group :db do
|
|
gem "activerecord-jdbcmysql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
|
gem "activerecord-jdbcpostgresql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
|
end
|
|
else
|
|
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0"
|
|
group :db do
|
|
gem "activerecord-jdbcmysql-adapter", ">= 1.3.0"
|
|
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0"
|
|
end
|
|
end
|
|
end
|
|
|
|
platforms :rbx do
|
|
# The rubysl-yaml gem doesn't ship with Psych by default as it needs
|
|
# libyaml that isn't always available.
|
|
gem "psych", "~> 3.0"
|
|
end
|
|
|
|
# Gems that are necessary for Active Record tests with Oracle.
|
|
if ENV["ORACLE_ENHANCED"]
|
|
platforms :ruby do
|
|
gem "ruby-oci8", "~> 2.2"
|
|
end
|
|
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
|
|
end
|
|
|
|
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64]
|
|
|
|
if RUBY_VERSION >= "3.1"
|
|
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
|
|
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
|
|
gem "net-smtp", require: false
|
|
gem "net-imap", require: false
|
|
gem "net-pop", require: false
|
|
|
|
# digest gem, which is one of the default gems has bumped to 3.0.1.pre for ruby 3.1.0dev.
|
|
gem "digest", "~> 3.0.1.pre", require: false
|
|
|
|
# matrix was removed from default gems in Ruby 3.1, but is used by the `capybara` gem.
|
|
# So we need to add it as a dependency until `capybara` is fixed: https://github.com/teamcapybara/capybara/pull/2468
|
|
gem "matrix", require: false
|
|
end
|