-
-
Notifications
You must be signed in to change notification settings - Fork 910
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Rails 6 appraisal to start testing against it. * Fix usage of Module#parent as this is deprecated in Rails 6 in favor of Module#module_parent. * Ensure that we're using the correct version of `sqlite3` and `pg` at all times * When creating classes within tests, ensure that they are removed correctly * Fix detection of has_secure_password in models: Check that InstanceMethodsOnActivation is specifically defined, as Rails 6 no longer has such a module. Co-authored-by: Lee Machin <me@mrl.ee>
- Loading branch information
Showing
21 changed files
with
553 additions
and
77 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
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
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,42 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal", "2.2.0" | ||
gem "bundler", "~> 1.1" | ||
gem "pry" | ||
gem "pry-byebug" | ||
gem "rake", "12.3.2" | ||
gem "rspec", "~> 3.6" | ||
gem "rubocop", require: false | ||
gem "zeus", require: false | ||
gem "fssm" | ||
gem "pygments.rb" | ||
gem "redcarpet" | ||
gem "yard" | ||
gem "activerecord-jdbc-adapter", platform: :jruby | ||
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby | ||
gem "jdbc-sqlite3", platform: :jruby | ||
gem "jruby-openssl", platform: :jruby | ||
gem "therubyrhino", platform: :jruby | ||
gem "sqlite3", "~> 1.3.6", platform: :ruby | ||
gem "spring" | ||
gem "spring-commands-rspec" | ||
gem "minitest-reporters" | ||
gem "rspec-rails", "~> 3.6" | ||
gem "shoulda-context", "~> 1.2.0" | ||
gem "rails", "~> 6.0.0.beta3" | ||
gem "puma", "~> 3.11" | ||
gem "bootsnap", ">= 1.4.1", require: false | ||
gem "sass-rails", "~> 5.0" | ||
gem "webpacker", ">= 4.0.0.rc3" | ||
gem "turbolinks", "~> 5" | ||
gem "jbuilder", "~> 2.5" | ||
gem "bcrypt", "~> 3.1.7" | ||
gem "capybara", ">= 2.15" | ||
gem "listen", ">= 3.0.5", "< 3.2" | ||
gem "spring-watcher-listen", "~> 2.0.0" | ||
gem "selenium-webdriver" | ||
gem "chromedriver-helper" | ||
gem "rails-controller-testing", ">= 1.0.1" | ||
gem "pg", "~> 1.1", platform: :ruby |
Oops, something went wrong.