Skip to content

Commit

Permalink
Merge pull request #79 from hashicorp/travis-ruby-versions
Browse files Browse the repository at this point in the history
Drop support for Ruby 2.2 and 2.3 (EOL), add 2.6
  • Loading branch information
justincampbell authored Jun 7, 2019
2 parents 132e351 + 383c17e commit 9dbbe8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ env:
- VAULT_VERSION=0.3.1

before_install:
# Downgrade Bundler to 1.x
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
- wget -O vault.zip -q https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip
- unzip vault.zip
- mkdir -p ~/bin
Expand All @@ -24,10 +27,9 @@ branches:
- master

rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- "2.4"
- "2.5"
- "2.6"

before_script:
- bundle exec rake app:db:create
Expand Down
4 changes: 0 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
appraise "rails-4.1" do
gem "rails", "~> 4.1.0"
end if RUBY_VERSION.to_f < 2.4

appraise "rails-4.2" do
gem "rails", "~> 4.2.0"
end
Expand Down

0 comments on commit 9dbbe8f

Please sign in to comment.