Skip to content

Commit

Permalink
update travis config to support activerecord-5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zokioki authored and rossta committed Apr 11, 2018
1 parent b6a43f9 commit 0702360
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
@@ -1,6 +1,7 @@
bundler_args: "--jobs 4 --retry 3"
cache: bundler
gemfile:
- gemfiles/activesupport_5.2.gemfile
- gemfiles/activesupport_5.1.gemfile
- gemfiles/activesupport_5.0.gemfile
- gemfiles/activesupport_4.2.gemfile
Expand All @@ -12,6 +13,8 @@ matrix:
gemfile: gemfiles/activesupport_5.0.gemfile # Requires Ruby 2.2+
- rvm: 2.1
gemfile: gemfiles/activesupport_5.1.gemfile # Requires Ruby 2.2+
- rvm: 2.1
gemfile: gemfiles/activesupport_5.2.gemfile # Requires Ruby 2.2+
- rvm: 2.4
gemfile: gemfiles/activesupport_4.1.gemfile # Requires json 1.8.5+
- rvm: 2.5
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
@@ -1,5 +1,9 @@
# frozen_string_literal: true

appraise "activesupport-5.2" do
gem "activesupport", "~> 5.2.0"
end

appraise "activesupport-5.1" do
gem "activesupport", "~> 5.1.0"
end
Expand Down
16 changes: 16 additions & 0 deletions gemfiles/activesupport_5.2.gemfile
@@ -0,0 +1,16 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activesupport", "~> 5.2.0"

group :development do
gem "coveralls"
gem "guard", platforms: [:ruby_22, :ruby_23]
gem "guard-minitest", platforms: [:ruby_22, :ruby_23]
gem "guard-rubocop", platforms: [:ruby_22, :ruby_23]
gem "pry-byebug", platforms: [:ruby_21, :ruby_22, :ruby_23]
gem "yard"
end

gemspec path: "../"

0 comments on commit 0702360

Please sign in to comment.