Skip to content

Commit

Permalink
Support Ruby versions 1.8.7 and 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ghoneycutt committed Aug 21, 2015
1 parent 8bd2531 commit df57c6e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ language: ruby
bundler_args: --without system_tests

rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0

env:
matrix:
Expand All @@ -27,6 +29,14 @@ matrix:
exclude:
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.1.0"
- rvm: 2.1.0
env: PUPPET_GEM_VERSION="~> 3.1.0"
- rvm: 2.1.0
env: PUPPET_GEM_VERSION="~> 3.2.0"
- rvm: 2.1.0
env: PUPPET_GEM_VERSION="~> 3.3.0"
- rvm: 2.1.0
env: PUPPET_GEM_VERSION="~> 3.4.0"

notifications:
email: false
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ group :development, :test do
gem 'puppet-lint', :require => false
gem 'pry', :require => false
gem 'simplecov', :require => false
gem 'rspec', '~> 2.99'
end

# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
end

if facterversion = ENV['FACTER_GEM_VERSION']
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Puppet module for installing and managing python, pip, virtualenvs and Gunicorn

# Compatibility #

Puppet v3 with Ruby versions 1.9.3 and 2.0.0.
Puppet v3 with Ruby versions 1.8.7, 1.9.3, 2.0.0 and 2.1.0.

## OS Distributions ##

Expand Down

0 comments on commit df57c6e

Please sign in to comment.