Skip to content

Commit

Permalink
Enable test with edge Rails (#944)
Browse files Browse the repository at this point in the history
* Add Gemfile for edge rails

* Add edge rails to gemfile
  • Loading branch information
yhirano55 authored and gauravtiwari committed Oct 15, 2017
1 parent 5de1420 commit 3e399da
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ gemfile:
- gemfiles/Gemfile-rails.4.2.x
- gemfiles/Gemfile-rails.5.0.x
- gemfiles/Gemfile-rails.5.1.x
- gemfiles/Gemfile-rails-edge
cache:
bundler: true
directories:
Expand All @@ -25,3 +26,6 @@ script:
- yarn lint
- bundle exec rubocop
- bundle exec rake test
matrix:
allow_failures:
- gemfile: gemfiles/Gemfile-rails-edge
13 changes: 13 additions & 0 deletions gemfiles/Gemfile-rails-edge
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source "https://rubygems.org"

git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gem "webpacker", path: ".."

gem "rails", github: "rails/rails"
gem "arel", github: "rails/arel"
gem "rake", ">= 11.1"
gem "rubocop", ">= 0.49", require: false
gem "rack-proxy", require: false
gem "minitest", "~> 5.0"
gem "byebug"

0 comments on commit 3e399da

Please sign in to comment.