Skip to content
This repository has been archived by the owner on Sep 2, 2020. It is now read-only.

Commit

Permalink
Run modulesync
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossg committed Feb 17, 2015
1 parent 932041c commit c821c8b
Show file tree
Hide file tree
Showing 17 changed files with 582 additions and 84 deletions.
48 changes: 40 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,41 @@
.idea
.rvmrc
.project
.librarian/
.tmp/
# This file is managed centrally by modulesync
# https://github.com/maestrodev/puppet-modulesync

## MAC OS
.DS_Store

## TEXTMATE
*.tmproj
tmtags

## EMACS
*~
\#*
.\#*

## VIM
*.swp
*.swo
tags

## Bundler
.bundle
vendor/

## rbenv / rvm
.rbenv*
.rvmrc*
.ruby-*

## rspec
spec/fixtures/manifests/
spec/fixtures/modules/

## Puppet module
pkg/
doc/
spec/fixtures/
modules/
coverage/

## Librarian-puppet
.tmp/
.librarian/

40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
# This file is managed centrally by modulesync
# https://github.com/maestrodev/puppet-modulesync

before_install:
- rm -f Gemfile.lock

rvm:
- "2.0.0"

env:
- PUPPET_VERSION="~> 3.7.0"
- PUPPET_VERSION="~> 3.6.0"
- PUPPET_VERSION="~> 3.5.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.3.0"
- PUPPET_VERSION="~> 3.2.0"

matrix:
exclude:
# No support for Ruby 2.0 before Puppet 3.2
- rvm: 2.0.0
env: PUPPET_VERSION="~> 2.7.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.0.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.1.0"
# Puppet < 3.5.0 is broken under ruby 2.1 https://tickets.puppetlabs.com/browse/PUP-1243
- rvm: 2.1.0
env: PUPPET_VERSION="~> 2.7.0"
- rvm: 2.1.0
env: PUPPET_VERSION="~> 3.0.0"
- rvm: 2.1.0
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.1.0
env: PUPPET_VERSION="~> 3.2.0"
- rvm: 2.1.0
env: PUPPET_VERSION="~> 3.3.0"
- rvm: 2.1.0
env: PUPPET_VERSION="~> 3.4.0"
24 changes: 15 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# This file is managed centrally by modulesync
# https://github.com/maestrodev/puppet-modulesync

source 'https://rubygems.org'

group :rake do
gem 'puppet', '>=2.7.17'
gem 'rspec-puppet', '>=0.1.3'
gem 'rake', '>=0.9.2.2'
gem 'puppet-lint', '>=0.1.12'
gem 'puppetlabs_spec_helper'
gem 'puppet-blacksmith', '>=2.1.0'
gem 'librarian-puppet', '>=1.0.0'
end
gem 'puppet', ENV['PUPPET_VERSION'] || '>= 2.7', :require => false

gem 'rake', :require => false
gem 'rspec-puppet', '>= 1.0.0', :require => false
gem 'puppetlabs_spec_helper', '>= 0.8.0', :require => false
gem 'puppet-lint', '>= 1.1.0', :require => false
gem 'simplecov', :require => false
gem 'puppet-blacksmith', '>= 3.0.0', :require => false
gem 'librarian-puppet', '>= 2.0.0', :require => false
gem 'beaker-rspec', '>= 3.0.0', :require => false

# vim:ft=ruby
Loading

0 comments on commit c821c8b

Please sign in to comment.