-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Temporarily fix Travis CI builds `nvm install node` will install the latest node version, which is 12 as of writing. Because of a problem in the resolved node-sass version this makes the builds fail. To get green builds until a proper fix for node 12 is introduced we'll install node 10, which is a LTS release, while 11 will be EOL in June 2019. @rokumatsumoto is maybe working on a fix, but I think green builds, especially for third party PRs are an important intermediate step. rails/webpacker#2077 sass/node-sass#2633 nodejs/nan#849 https://github.com/nodejs/Release * Lock RuboCop to a version that supports Ruby 2.2 RuboCop 0.69.0 dropped support for Ruby 2.2, making RuboCop fail when it was installed since it pointed to the git repo instead of a specific version. https://github.com/rubocop-hq/rubocop/blob/v0.69.0/CHANGELOG.md#changes * Allow failures with ruby-head These might – currently – not be related to Ruby itself, but to the fact that bundler 2.1.0.pre.1 was installed, which is as of writing not supported by webpacker (`~> 1.12` is used). But this is to get the CI builds green again.
- Loading branch information
1 parent
a1f0955
commit 6919b17
Showing
9 changed files
with
19 additions
and
32 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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "webpacker", path: ".." | ||
gemspec path: "../" | ||
|
||
gem "rails", "~> 4.2.0" | ||
gem "rake", ">= 11.1" | ||
gem "rubocop", git: "https://github.com/rubocop-hq/rubocop.git", require: false | ||
gem "rack-proxy", require: false | ||
gem "minitest", "~> 5.0" | ||
gem "byebug" |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "webpacker", path: ".." | ||
gemspec path: "../" | ||
|
||
gem "rails", "~> 5.0.0" | ||
gem "rake", ">= 11.1" | ||
gem "rubocop", git: "https://github.com/rubocop-hq/rubocop.git", require: false | ||
gem "rack-proxy", require: false | ||
gem "minitest", "~> 5.0" | ||
gem "byebug" |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "webpacker", path: ".." | ||
gemspec path: "../" | ||
|
||
gem "rails", "~> 5.1.0" | ||
gem "rake", ">= 11.1" | ||
gem "rubocop", git: "https://github.com/rubocop-hq/rubocop.git", require: false | ||
gem "rack-proxy", require: false | ||
gem "minitest", "~> 5.0" | ||
gem "byebug" |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "webpacker", path: ".." | ||
gemspec path: "../" | ||
|
||
gem "rails", "~> 5.2.0" | ||
gem "rake", ">= 11.1" | ||
gem "rubocop", git: "https://github.com/rubocop-hq/rubocop.git", require: false | ||
gem "rack-proxy", require: false | ||
gem "minitest", "~> 5.0" | ||
gem "byebug" |
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