-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* peg sqlite3 gems * drop ruby 2.2 and 2.3 * tell travis to run mysql and postgres sure, we're running both for both all 3 runs so not perfectly optimal, but greatly simplifies the implementation * reduce the build matrix no reason to run so many ruby versions * add tests for 6.0
- Loading branch information
Showing
6 changed files
with
52 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
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,19 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activerecord", "~> 6.0.0" | ||
|
||
platforms :ruby do | ||
gem "mysql2" | ||
gem "pg" | ||
gem "sqlite3" | ||
end | ||
|
||
platforms :jruby do | ||
gem "activerecord-jdbcmysql-adapter" | ||
gem "activerecord-jdbcpostgresql-adapter" | ||
gem "activerecord-jdbcsqlite3-adapter" | ||
end | ||
|
||
gemspec path: "../" |