-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rails 6.0 config to travis #1366
Merged
MaicolBen
merged 8 commits into
lynndylanhurley:master
from
brateq:add_rails_6_travis_config
Jan 30, 2020
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
c9aec36
Add rails 6.0 config to travis
brateq 4868bed
Exclude Travis Rails 6.0 checks for Ruby below 2.5
brateq 0d47e1f
Updates tests to be compatible with Rails 6
brateq a53911c
Add Ruby 2.7.0 to Travis
brateq 04f4b9f
Exclude travis test for Ruby 2.7.0 with Rails 4.2
brateq 5c0eb17
Add to Travis test for rails 6 + mongoid 7
brateq cfc95d0
Downgrade mongoid-locker for rails 6 gemfile
brateq 8ef113c
Allow to change primary key type for Rails 6
brateq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,45 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "rails", "~> 6.0" | ||
gem "sqlite3", "~> 1.4.1" | ||
gem "mysql2" | ||
gem "pg" | ||
|
||
group :development, :test do | ||
gem "attr_encrypted" | ||
gem "figaro", git: "https://github.com/laserlemon/figaro" | ||
gem "omniauth-facebook", git: "https://github.com/mkdynamic/omniauth-facebook" | ||
gem "omniauth-github", git: "https://github.com/intridea/omniauth-github" | ||
gem "omniauth-google-oauth2", git: "https://github.com/zquestz/omniauth-google-oauth2" | ||
gem 'omniauth-apple' | ||
gem "rack-cors", require: "rack/cors" | ||
gem "thor" | ||
gem "database_cleaner" | ||
gem "factory_bot_rails" | ||
gem "faker" | ||
gem "fuzz_ball" | ||
gem "guard" | ||
gem "guard-minitest" | ||
gem "minitest" | ||
gem "minitest-focus" | ||
gem "minitest-rails" | ||
gem "minitest-reporters" | ||
gem "mocha", ">= 1.5" | ||
gem "pry" | ||
gem "pry-byebug" | ||
gem "pry-remote" | ||
gem "rubocop", require: false | ||
end | ||
|
||
group :test do | ||
gem "rails-controller-testing" | ||
gem "simplecov", require: false | ||
end | ||
|
||
group :development do | ||
gem "github_changelog_generator" | ||
end | ||
|
||
gemspec path: "../" |
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,44 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "rails", "~> 6.0" | ||
gem "mongoid", "~> 7.0" | ||
gem "mongoid-locker", "~> 1.0" | ||
|
||
group :development, :test do | ||
gem "attr_encrypted" | ||
gem "figaro", git: "https://github.com/laserlemon/figaro" | ||
gem "omniauth-facebook", git: "https://github.com/mkdynamic/omniauth-facebook" | ||
gem "omniauth-github", git: "https://github.com/intridea/omniauth-github" | ||
gem "omniauth-google-oauth2", git: "https://github.com/zquestz/omniauth-google-oauth2" | ||
gem "omniauth-apple" | ||
gem "rack-cors", require: "rack/cors" | ||
gem "thor" | ||
gem "database_cleaner" | ||
gem "factory_bot_rails" | ||
gem "faker" | ||
gem "fuzz_ball" | ||
gem "guard" | ||
gem "guard-minitest" | ||
gem "minitest" | ||
gem "minitest-focus" | ||
gem "minitest-rails" | ||
gem "minitest-reporters" | ||
gem "mocha", ">= 1.5" | ||
gem "pry" | ||
gem "pry-byebug" | ||
gem "pry-remote" | ||
gem "rubocop", require: false | ||
end | ||
|
||
group :test do | ||
gem "rails-controller-testing" | ||
gem "simplecov", require: false | ||
end | ||
|
||
group :development do | ||
gem "github_changelog_generator" | ||
end | ||
|
||
gemspec path: "../" |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I've changed the generator code to allow usage of "primary_key_type" not only for Rails 5, but for everything above 5. Is that ok?