-
-
Save michaldarda/a9a5d577175bac50d9831e0bfaef606d to your computer and use it in GitHub Desktop.
ActionCable isn't *really* a Rails 5 dependency.
This file contains hidden or 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
# Existing applications upgrading to Rails 5 that don't want ActionCable | |
# config/application.rb | |
# require 'rails/all' | |
require "rails" | |
# same as rails/all.rb, but remove actioncable | |
require "active_model/railtie" | |
require "active_job/railtie" | |
require "active_record/railtie" | |
require "action_controller/railtie" | |
require "action_mailer/railtie" | |
require "action_view/railtie" | |
# require "action_cable/engine" | |
require "sprockets/railtie" | |
require "rails/test_unit/railtie" |
This file contains hidden or 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
# gem 'rails' | |
gem "activerecord" | |
gem "actionpack" | |
gem "actionview" | |
gem "actionmailer" | |
gem "activejob" | |
gem "activesupport" | |
gem "railties" | |
gem "sprockets-rails" | |
gem 'sqlite3' | |
# If you do this, you don't need to change config/application.rb. | |
# This has the side effect of not even *installing* ActionCable's gem dependencies. | |
# via @derekprior |
This file contains hidden or 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
rails new --skip-action-cable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment