-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5855 from sgara/add-webpacker-switch
Add webpacker compatibility with config switch and installation generator
- Loading branch information
Showing
19 changed files
with
630 additions
and
15 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
source "https://rubygems.org" | ||
|
||
group :development, :test do | ||
gem 'rake' | ||
gem 'pry' # Easily debug from your console with `binding.pry` | ||
gem 'pry-byebug', platform: :mri # Step-by-step debugging | ||
|
||
gem 'cancancan' | ||
gem 'pundit' | ||
gem 'jruby-openssl', '~> 0.10.1', platform: :jruby | ||
|
||
gem 'draper', '~> 4.0' | ||
gem "devise", "~> 4.7" | ||
|
||
gem "rails", "~> 6.0.0", github: "rails/rails", branch: "6-0-stable", ref: "3ed7c5864ff4ac349848722fbf682a657eebddbf" | ||
gem "activerecord-jdbcsqlite3-adapter", "~> 60.0", platform: :jruby | ||
|
||
gem "webpacker", "~> 4.0" | ||
|
||
gem "formtastic", github: "justinfrench/formtastic" | ||
end | ||
|
||
group :test do | ||
gem 'apparition' | ||
gem 'capybara', '~> 3.14' | ||
gem 'db-query-matchers', '0.10.0' | ||
|
||
gem 'simplecov', '0.17.1', require: false # Test coverage generator. Go to /coverage/ after running tests | ||
gem 'cucumber-rails', '~> 2.0', require: false | ||
gem 'cucumber' | ||
gem 'database_cleaner' | ||
gem 'jasmine' | ||
gem 'jasmine-core', '2.99.2' # last release with Ruby 2.2 support. | ||
gem 'launchy' | ||
gem 'parallel_tests', '~> 2.26' | ||
gem 'rails-i18n' # Provides default i18n for many languages | ||
gem 'rspec-rails' | ||
gem "sqlite3", "~> 1.4", platform: :mri | ||
end | ||
|
||
gemspec path: "../.." |
Oops, something went wrong.