diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-01-04 16:11:55 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-01-04 16:11:55 -0800 |
commit | ab564c225a4ed2879c97103698752b56025de5b7 (patch) | |
tree | 20d7da4ea8cbb8a8776664e7540f334aa1eb566d | |
parent | 1e2f8593a4df7af3be012643f072acd92e4ba025 (diff) | |
download | mixlib-shellout-ab564c225a4ed2879c97103698752b56025de5b7.tar.gz |
update travis/appveyor, drop ruby 2.2 support, test on 2.6lcg/version-bump2
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r-- | .travis.yml | 8 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | appveyor.yml | 8 | ||||
-rw-r--r-- | lib/mixlib/shellout/version.rb | 2 |
4 files changed, 11 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index eea4794..5f7875d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,9 @@ -sudo: false language: ruby cache: bundler -distro: xenial +dist: xenial matrix: include: - - rvm: 2.2.10 - rvm: 2.3.8 - rvm: 2.4.5 - rvm: 2.5.3 @@ -19,7 +17,9 @@ branches: - master before_install: - - gem update bundler - gem update --system + - gem --version + - gem update bundler + - bundle --version script: bundle exec rake @@ -1 +1 @@ -2.4.4
\ No newline at end of file +3.0.0 diff --git a/appveyor.yml b/appveyor.yml index 20d082a..168be7a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,9 +6,11 @@ platform: environment: matrix: - - ruby_version: "22" - ruby_version: "23" - ruby_version: "23-x64" + - ruby_version: "24-x64" + - ruby_version: "25-x64" + - ruby_version: "26-x64" clone_folder: c:\projects\mixlib-shellout clone_depth: 1 @@ -31,9 +33,9 @@ install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - echo %PATH% - ruby --version - - gem --version - gem update --system - - gem install bundler --quiet --no-ri --no-rdoc + - gem --version + - gem install bundler --quiet --no-document - bundler --version build_script: diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb index 06439e2..21b5e5e 100644 --- a/lib/mixlib/shellout/version.rb +++ b/lib/mixlib/shellout/version.rb @@ -1,5 +1,5 @@ module Mixlib class ShellOut - VERSION = "2.4.4".freeze + VERSION = "3.0.0".freeze end end |