2017-08-13 09:14:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:23:19 -04:00
|
|
|
source "https://rubygems.org"
|
2010-01-31 19:33:06 -05:00
|
|
|
|
2017-08-07 04:46:00 -04:00
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
2016-09-13 20:19:09 -04:00
|
|
|
|
2010-12-18 13:42:03 -05:00
|
|
|
gemspec
|
|
|
|
|
2014-09-14 04:21:55 -04:00
|
|
|
# We need a newish Rake since Active Job sets its test tasks' descriptions.
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "rake", ">= 11.1"
|
2014-09-14 04:21:55 -04:00
|
|
|
|
2019-07-24 22:19:21 -04:00
|
|
|
gem "capybara", ">= 3.26"
|
2020-12-28 20:11:25 -05:00
|
|
|
gem "selenium-webdriver", ">= 4.0.0.alpha7"
|
2017-02-19 11:50:42 -05:00
|
|
|
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "rack-cache", "~> 1.2"
|
2017-11-14 14:42:12 -05:00
|
|
|
gem "sass-rails"
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "turbolinks", "~> 5"
|
2020-03-22 12:40:48 -04:00
|
|
|
gem "webpacker", "~> 5.0", require: ENV["SKIP_REQUIRE_WEBPACKER"] != "true"
|
2014-02-21 15:58:09 -05:00
|
|
|
# require: false so bcrypt is loaded only when has_secure_password is used.
|
2015-10-12 07:48:04 -04:00
|
|
|
# This is to avoid Active Model (and by extension the entire framework)
|
2014-02-21 15:58:09 -05:00
|
|
|
# being dependent on a binary library.
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "bcrypt", "~> 3.1.11", require: false
|
2014-02-21 15:58:09 -05:00
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# This needs to be with require false to avoid it being automatically loaded by
|
|
|
|
# sprockets.
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "uglifier", ">= 1.3.0", require: false
|
2015-09-30 10:42:31 -04:00
|
|
|
|
2016-11-14 19:26:03 -05:00
|
|
|
# Explicitly avoid 1.x that doesn't support Ruby 2.4+
|
|
|
|
gem "json", ">= 2.0.0"
|
|
|
|
|
2020-03-27 19:55:26 -04:00
|
|
|
group :rubocop do
|
2020-09-05 21:07:04 -04:00
|
|
|
gem "rubocop", ">= 0.90", require: false
|
|
|
|
gem "rubocop-packaging", require: false
|
2020-03-27 19:55:26 -04:00
|
|
|
gem "rubocop-performance", require: false
|
|
|
|
gem "rubocop-rails", require: false
|
|
|
|
end
|
2016-11-27 22:12:33 -05:00
|
|
|
|
2011-01-12 15:15:57 -05:00
|
|
|
group :doc do
|
2021-02-25 11:47:26 -05:00
|
|
|
gem "sdoc", ">= 2.0.4"
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "redcarpet", "~> 3.2.3", platforms: :ruby
|
2020-09-21 01:19:59 -04:00
|
|
|
gem "w3c_validators", "~> 1.3.6"
|
2016-12-18 10:13:50 -05:00
|
|
|
gem "kindlerb", "~> 1.2.0"
|
2020-07-04 04:59:08 -04:00
|
|
|
gem "rouge"
|
2011-01-12 15:15:57 -05:00
|
|
|
end
|
2009-11-10 17:59:22 -05:00
|
|
|
|
2018-12-24 15:16:22 -05:00
|
|
|
# Active Support
|
2018-04-11 03:52:10 -04:00
|
|
|
gem "dalli"
|
2020-11-10 10:52:20 -05:00
|
|
|
gem "listen", "~> 3.3", require: false
|
2016-11-19 10:46:28 -05:00
|
|
|
gem "libxml-ruby", platforms: :ruby
|
2017-12-14 10:05:13 -05:00
|
|
|
gem "connection_pool", require: false
|
2020-09-24 18:41:04 -04:00
|
|
|
gem "rexml", require: false
|
2010-07-25 18:31:45 -04:00
|
|
|
|
2020-12-13 02:34:39 -05:00
|
|
|
# for railties
|
2019-04-26 03:25:28 -04:00
|
|
|
gem "bootsnap", ">= 1.4.4", require: false
|
2020-12-13 02:34:39 -05:00
|
|
|
gem "webrick", require: false
|
2019-02-11 15:44:25 -05:00
|
|
|
|
2018-12-24 15:16:22 -05:00
|
|
|
# Active Job
|
2014-08-19 22:21:39 -04:00
|
|
|
group :job do
|
2017-02-10 01:31:41 -05:00
|
|
|
gem "resque", require: false
|
2017-12-13 17:49:08 -05:00
|
|
|
gem "resque-scheduler", require: false
|
2017-10-09 07:49:55 -04:00
|
|
|
gem "sidekiq", require: false
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "sucker_punch", require: false
|
2017-12-29 16:57:28 -05:00
|
|
|
gem "delayed_job", require: false
|
2019-01-25 14:01:47 -05:00
|
|
|
gem "queue_classic", github: "QueueClassic/queue_classic", require: false, platforms: :ruby
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "sneakers", require: false
|
|
|
|
gem "que", require: false
|
|
|
|
gem "backburner", require: false
|
2017-01-28 19:05:06 -05:00
|
|
|
gem "delayed_job_active_record", require: false
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "sequel", require: false
|
2014-08-19 22:21:39 -04:00
|
|
|
end
|
2014-08-12 05:29:21 -04:00
|
|
|
|
2015-12-14 10:38:37 -05:00
|
|
|
# Action Cable
|
|
|
|
group :cable do
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "puma", require: false
|
2016-01-24 05:43:40 -05:00
|
|
|
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "hiredis", require: false
|
2017-09-29 00:54:00 -04:00
|
|
|
gem "redis", "~> 4.0", require: false
|
|
|
|
|
2021-02-22 04:48:02 -05:00
|
|
|
gem "redis-namespace"
|
2016-01-24 12:25:53 -05:00
|
|
|
|
2016-10-05 21:11:18 -04:00
|
|
|
gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false
|
2015-12-14 10:38:37 -05:00
|
|
|
end
|
|
|
|
|
2017-10-11 15:31:54 -04:00
|
|
|
# Active Storage
|
2017-07-31 16:53:09 -04:00
|
|
|
group :storage do
|
2017-09-09 23:22:10 -04:00
|
|
|
gem "aws-sdk-s3", require: false
|
2018-05-01 23:20:56 -04:00
|
|
|
gem "google-cloud-storage", "~> 1.11", require: false
|
2019-08-06 12:25:39 -04:00
|
|
|
gem "azure-storage-blob", require: false
|
2017-07-31 16:53:09 -04:00
|
|
|
|
2018-04-05 19:48:29 -04:00
|
|
|
gem "image_processing", "~> 1.2"
|
2017-07-31 16:53:09 -04:00
|
|
|
end
|
|
|
|
|
2018-12-24 15:16:22 -05:00
|
|
|
# Action Mailbox
|
|
|
|
gem "aws-sdk-sns", require: false
|
|
|
|
gem "webmock"
|
|
|
|
|
2017-10-19 12:01:52 -04:00
|
|
|
group :ujs do
|
|
|
|
gem "qunit-selenium"
|
2019-03-24 17:05:30 -04:00
|
|
|
gem "webdrivers"
|
2017-10-19 12:01:52 -04:00
|
|
|
end
|
|
|
|
|
2020-11-26 18:58:17 -05:00
|
|
|
# Action View
|
|
|
|
group :view do
|
|
|
|
gem "blade", require: false, platforms: [:ruby]
|
|
|
|
gem "sprockets-export", require: false
|
|
|
|
end
|
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# Add your own local bundler stuff.
|
2017-05-15 10:17:28 -04:00
|
|
|
local_gemfile = File.expand_path(".Gemfile", __dir__)
|
2013-11-01 05:39:06 -04:00
|
|
|
instance_eval File.read local_gemfile if File.exist? local_gemfile
|
2010-11-05 17:11:58 -04:00
|
|
|
|
2013-03-11 14:48:30 -04:00
|
|
|
group :test do
|
2017-07-15 15:19:13 -04:00
|
|
|
gem "minitest-bisect"
|
2018-10-10 18:33:09 -04:00
|
|
|
gem "minitest-retry"
|
2019-03-24 13:59:28 -04:00
|
|
|
gem "minitest-reporters"
|
2014-05-16 12:18:21 -04:00
|
|
|
|
2015-04-01 16:09:58 -04:00
|
|
|
platforms :mri do
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "stackprof"
|
|
|
|
gem "byebug"
|
2014-11-17 09:39:32 -05:00
|
|
|
end
|
|
|
|
|
2020-06-04 21:17:51 -04:00
|
|
|
gem "benchmark-ips"
|
2011-07-22 08:55:48 -04:00
|
|
|
end
|
|
|
|
|
2015-12-16 11:31:44 -05:00
|
|
|
platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
|
2021-01-05 07:52:07 -05:00
|
|
|
gem "nokogiri", ">= 1.8.1", "!= 1.11.0"
|
2011-05-05 13:47:07 -04:00
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# Needed for compiling the ActionDispatch::Journey parser.
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "racc", ">=1.4.6", require: false
|
2013-02-26 00:10:03 -05:00
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# Active Record.
|
Use `execute_batch2` rather than `execute_batch` to fix performance regression for fixture loading
d8d6bd5 makes fixture loading to bulk statements by using
`execute_batch` for sqlite3 adapter. But `execute_batch` is slower and
it caused the performance regression for fixture loading.
In sqlite3 1.4.0, it have new batch method `execute_batch2`. I've
confirmed `execute_batch2` is extremely faster than `execute_batch`.
So I think it is worth to upgrade sqlite3 to 1.4.0 to use that method.
Before:
```
% ARCONN=sqlite3 bundle exec ruby -w -Itest test/cases/associations/eager_test.rb -n test_eager_loading_too_may_ids
Using sqlite3
Run options: -n test_eager_loading_too_may_ids --seed 35790
# Running:
.
Finished in 202.437406s, 0.0049 runs/s, 0.0049 assertions/s.
1 runs, 1 assertions, 0 failures, 0 errors, 0 skips
ARCONN=sqlite3 bundle exec ruby -w -Itest -n test_eager_loading_too_may_ids 142.57s user 60.83s system 98% cpu 3:27.08 total
```
After:
```
% ARCONN=sqlite3 bundle exec ruby -w -Itest test/cases/associations/eager_test.rb -n test_eager_loading_too_may_ids
Using sqlite3
Run options: -n test_eager_loading_too_may_ids --seed 16649
# Running:
.
Finished in 8.471032s, 0.1180 runs/s, 0.1180 assertions/s.
1 runs, 1 assertions, 0 failures, 0 errors, 0 skips
ARCONN=sqlite3 bundle exec ruby -w -Itest -n test_eager_loading_too_may_ids 10.71s user 1.36s system 95% cpu 12.672 total
```
2019-04-03 14:19:08 -04:00
|
|
|
gem "sqlite3", "~> 1.4"
|
2010-05-19 16:38:27 -04:00
|
|
|
|
|
|
|
group :db do
|
2020-04-26 13:50:44 -04:00
|
|
|
gem "pg", "~> 1.1"
|
2020-09-22 15:40:47 -04:00
|
|
|
gem "mysql2", "~> 0.5", github: "brianmario/mysql2"
|
2010-05-19 16:38:27 -04:00
|
|
|
end
|
2010-07-25 18:31:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
2016-08-06 13:23:19 -04:00
|
|
|
if ENV["AR_JDBC"]
|
2016-09-13 20:19:09 -04:00
|
|
|
gem "activerecord-jdbcsqlite3-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
2013-09-03 02:33:00 -04:00
|
|
|
group :db do
|
2016-09-13 20:19:09 -04:00
|
|
|
gem "activerecord-jdbcmysql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
|
|
|
gem "activerecord-jdbcpostgresql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
2013-09-03 02:33:00 -04:00
|
|
|
end
|
|
|
|
else
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0"
|
2013-09-03 02:33:00 -04:00
|
|
|
group :db do
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "activerecord-jdbcmysql-adapter", ">= 1.3.0"
|
|
|
|
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0"
|
2013-09-03 02:33:00 -04:00
|
|
|
end
|
2013-08-20 14:31:43 -04:00
|
|
|
end
|
2009-12-31 21:49:27 -05:00
|
|
|
end
|
2010-08-16 16:58:17 -04:00
|
|
|
|
2014-07-23 13:24:16 -04:00
|
|
|
platforms :rbx do
|
2015-10-12 07:48:04 -04:00
|
|
|
# The rubysl-yaml gem doesn't ship with Psych by default as it needs
|
|
|
|
# libyaml that isn't always available.
|
2018-03-09 15:14:36 -05:00
|
|
|
gem "psych", "~> 3.0"
|
2014-07-23 13:24:16 -04:00
|
|
|
end
|
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# Gems that are necessary for Active Record tests with Oracle.
|
2016-08-06 13:23:19 -04:00
|
|
|
if ENV["ORACLE_ENHANCED"]
|
2010-08-16 16:58:17 -04:00
|
|
|
platforms :ruby do
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "ruby-oci8", "~> 2.2"
|
2010-08-16 16:58:17 -04:00
|
|
|
end
|
2016-09-13 20:19:09 -04:00
|
|
|
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
|
2010-08-16 16:58:17 -04:00
|
|
|
end
|
2011-10-02 22:51:01 -04:00
|
|
|
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
|
|
gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64]
|