-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* silence deprecation warning from the rename of `Module#parent` to `Module#module_parent` Rails 6 deprecated `Module#parent` and friends in rails/rails#34051, replacing them with a `module_*`-prefix naming scheme. This checks to see if `module_parent` is defined, using it if it's available. * fix tests with hacky patch * comments * revert formatting changes * Fully support Rails 6.1 in tests * forgot to exclude several old versions of Ruby * fix indentation in blocks Big thanks to @andrew-newell Co-authored-by: Alex Robbin <agrobbin@gmail.com>
- Loading branch information
Showing
6 changed files
with
67 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
source "http://rubygems.org" | ||
|
||
gemspec :path => ".." | ||
|
||
gem "activerecord", "~> 6.1.1" | ||
|
||
group :development do | ||
gem 'mocha' | ||
gem "rake" | ||
gem "yard" | ||
|
||
platforms :ruby do | ||
gem "sqlite3", '~> 1.4' | ||
gem "redcarpet" | ||
end | ||
|
||
platforms :jruby do | ||
gem "activerecord-jdbcsqlite3-adapter" | ||
gem "jruby-openssl", :require => false # Silence openssl warnings. | ||
end | ||
end |
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