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
|
|
|
|
2018-04-10 16:37:17 -04:00
|
|
|
gem "capybara", ">= 2.15"
|
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"
|
Make Webpacker the default JavaScript compiler for Rails 6 (#33079)
* Use Webpacker by default on new apps
* Stop including coffee-rails by default
* Drop using a js_compressor by default
* Drop extra test for coffeescript inclusion by default
* Stick with skip_javascript to signify skipping webpack
* Don't install a JS runtime by default any more
* app/javascript will be the new default directory for JS
* Make it clear that this is just for configuring the default Webpack framework setup now
* Start using the Webpack tag in the default layout
* Irrelevant test
* jQuery is long gone
* Stop having asset pipeline compile default application.js
* Add rails-ujs by default to the Webpack setup
* Add Active Storage JavaScript to application.js pack by default
* Consistent quoting
* Add Turbolinks to default pack
* Add Action Cable to default pack
Need some work on how to set the global consumer that channels will
work with. @javan?
* Require all channels by default and use a separate consumer stub
* Channel generator now targets Webpack style
* Update task docs to match new generator style
* Use uniform import style
* Drop the JS assets generator
It was barely helpful as it was. It’s no longer helpful in a Webpacked
world. Sayonara!
* Add app/javascript to the stats directories
* Simpler import style
Which match the other imports.
* Address test failures from dropping JS compilation (and compression)
* webpacker-default: Modify `AssetsGeneratorTest`
Before:
```
$ bin/test test/generators/assets_generator_test.rb
Run options: --seed 46201
F
Failure:
AssetsGeneratorTest#test_assets [/Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/assets_generator_test.rb:12]:
Expected file "app/assets/javascripts/posts.js" to exist, but does not
bin/test /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/assets_generator_test.rb:10
.
Finished in 0.031343s, 63.8101 runs/s, 95.7152 assertions/s.
2 runs, 3 assertions, 1 failures, 0 errors, 0 skips
```
After:
```
$ bin/test test/generators/assets_generator_test.rb
Run options: --seed 43571
..
Finished in 0.030370s, 65.8545 runs/s, 65.8545 assertions/s.
2 runs, 2 assertions, 0 failures, 0 errors, 0 skips
```
* webpacker-default: Modify `ChannelGeneratorTest`
Before:
```
$ bin/test test/generators/channel_generator_test.rb
Run options: --seed 8986
.F
Failure:
ChannelGeneratorTest#test_channel_with_multiple_actions_is_created [/Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:43]:
Expected file "app/assets/javascripts/channels/chat.js" to exist, but does not
bin/test /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:34
.F
Failure:
ChannelGeneratorTest#test_channel_is_created [/Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:29]:
Expected file "app/assets/javascripts/channels/chat.js" to exist, but does not
bin/test /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:22
E
Error:
ChannelGeneratorTest#test_cable_js_is_created_if_not_present_already:
Errno::ENOENT: No such file or directory @ apply2files - /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/fixtures/tmp/app/assets/javascripts/cable.js
bin/test /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:60
F
Failure:
ChannelGeneratorTest#test_channel_suffix_is_not_duplicated [/Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:87]:
Expected file "app/assets/javascripts/channels/chat.js" to exist, but does not
bin/test /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:80
F
Failure:
ChannelGeneratorTest#test_channel_on_revoke [/Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:77]:
Expected file "app/assets/javascripts/cable.js" to exist, but does not
bin/test /Users/ttanimichi/ghq/github.com/ttanimichi/rails/railties/test/generators/channel_generator_test.rb:68
Finished in 0.064384s, 108.7227 runs/s, 481.4861 assertions/s.
7 runs, 31 assertions, 4 failures, 1 errors, 0 skips
```
After:
```
$ bin/test test/generators/channel_generator_test.rb
Run options: --seed 44857
.......
Finished in 0.060243s, 116.1961 runs/s, 697.1764 assertions/s.
7 runs, 42 assertions, 0 failures, 0 errors, 0 skips
```
* Fix shared generator tests.
* webpacker-default: Modify `ControllerGeneratorTest`
The JS assets generator was dropped. ref. https://github.com/rails/rails/commit/46215b179483d3e4d264555f5a4952f43eb8142a
* Revert "Simpler import style". It's currently failing with an error of "TypeError: undefined is not an object (evaluating '__WEBPACK_IMPORTED_MODULE_2_activestorage___default.a.start')". Waiting for @javan to have a look.
This reverts commit 5d3ebb71059f635d3756cbda4ab9752027e09256.
* require webpacker in test app
* Add webpacker without making the build hang/timeout. (#33640)
* use yarn workspaces to allow for installing unreleased packages and only generate js/bootsnap when required
* no longer need to have webpacker in env templates as webpacker moved this config to yml file
* Fix rubocop violation
* Got the test passing for the running scaffold
* update expected lines of code
* update middleware tests to account for webpacker
* disable js in plugins be default to get the tests passing (#34009)
* clear codeclimate report issues
* Anything newer than currently released is good
* Use Webpacker development version during development of Rails
* Edge should get development webpacker as well
* Add changelog entry for Webpacker change
2018-10-01 01:31:21 -04:00
|
|
|
gem "webpacker", github: "rails/webpacker", 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"
|
|
|
|
|
2017-01-16 01:34:30 -05:00
|
|
|
gem "rubocop", ">= 0.47", require: false
|
2016-11-27 22:12:33 -05:00
|
|
|
|
2017-08-29 05:24:13 -04:00
|
|
|
# https://github.com/guard/rb-inotify/pull/79
|
2017-07-19 13:43:12 -04:00
|
|
|
gem "rb-inotify", github: "matthewd/rb-inotify", branch: "close-handling", require: false
|
|
|
|
|
2011-01-12 15:15:57 -05:00
|
|
|
group :doc do
|
2018-02-06 13:49:15 -05:00
|
|
|
gem "sdoc", "~> 1.0"
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "redcarpet", "~> 3.2.3", platforms: :ruby
|
|
|
|
gem "w3c_validators"
|
2016-12-18 10:13:50 -05:00
|
|
|
gem "kindlerb", "~> 1.2.0"
|
2011-01-12 15:15:57 -05:00
|
|
|
end
|
2009-11-10 17:59:22 -05:00
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# Active Support.
|
2018-04-11 03:52:10 -04:00
|
|
|
gem "dalli"
|
2016-10-03 07:28:17 -04:00
|
|
|
gem "listen", ">= 3.0.5", "< 3.2", 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
|
2010-07-25 18:31:45 -04:00
|
|
|
|
2017-06-01 14:28:51 -04:00
|
|
|
# for railties app_generator_test
|
|
|
|
gem "bootsnap", ">= 1.1.0", require: false
|
|
|
|
|
2015-10-12 07:48:04 -04: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
|
2018-01-11 14:37:27 -05:00
|
|
|
gem "queue_classic", github: "rafaelfranca/queue_classic", branch: "update-pg", 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
|
|
|
|
|
2017-11-08 03:08:23 -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
|
2016-05-31 10:44:09 -04:00
|
|
|
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "blade", require: false, platforms: [:ruby]
|
|
|
|
gem "blade-sauce_labs_plugin", require: false, platforms: [:ruby]
|
2017-03-11 12:33:11 -05:00
|
|
|
gem "sprockets-export", 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
|
2017-08-02 14:13:11 -04:00
|
|
|
gem "azure-storage", 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
|
|
|
|
|
2017-10-19 12:01:52 -04:00
|
|
|
group :ujs do
|
|
|
|
gem "qunit-selenium"
|
|
|
|
gem "chromedriver-helper"
|
|
|
|
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"
|
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"
|
2018-04-29 05:12:44 -04:00
|
|
|
# FIXME: Remove this when thor 0.21 is release
|
|
|
|
gem "thor", git: "https://github.com/erikhuda/thor.git", ref: "006832ea32480618791f89bb7d9e67b22fc814b9"
|
2014-11-17 09:39:32 -05:00
|
|
|
end
|
|
|
|
|
2016-08-06 13:23:19 -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
|
2017-12-14 13:06:53 -05:00
|
|
|
gem "nokogiri", ">= 1.8.1"
|
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.
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "sqlite3", "~> 1.3.6"
|
2010-05-19 16:38:27 -04:00
|
|
|
|
|
|
|
group :db do
|
2018-09-15 03:07:03 -04:00
|
|
|
gem "pg", ">= 0.18.0"
|
2018-02-15 13:12:58 -05:00
|
|
|
gem "mysql2", ">= 0.4.10"
|
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
|
|
|
|
2015-10-12 07:48:04 -04:00
|
|
|
# A gem necessary for Active Record tests with IBM DB.
|
2016-08-06 13:23:19 -04:00
|
|
|
gem "ibm_db" if ENV["IBM_DB"]
|
|
|
|
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
|
|
gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64]
|