-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from voxpupuli/modulesync
Update from voxpupuli modulesync_config
- Loading branch information
Showing
18 changed files
with
197 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,11 @@ | ||
*.gem | ||
*.rbc | ||
/.config | ||
/coverage/ | ||
/InstalledFiles | ||
/pkg/ | ||
/spec/reports/ | ||
/test/tmp/ | ||
/test/version_tmp/ | ||
/tmp/ | ||
modules/ | ||
|
||
## Specific to RubyMotion: | ||
.dat* | ||
.repl_history | ||
build/ | ||
|
||
## Documentation cache and generated files: | ||
/.yardoc/ | ||
/_yardoc/ | ||
/doc/ | ||
/rdoc/ | ||
|
||
## Environment normalisation: | ||
/.bundle/ | ||
/vendor/bundle | ||
/lib/bundler/man/ | ||
|
||
# for a library or gem, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
pkg/ | ||
Gemfile.lock | ||
# .ruby-version | ||
# .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
vendor/ | ||
spec/fixtures/ | ||
.vagrant/ | ||
.bundle/ | ||
coverage/ | ||
log/ | ||
.idea/ | ||
*.iml | ||
.*.sw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--format documentation | ||
--color | ||
--color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,64 @@ | ||
source 'https://rubygems.org' | ||
source ENV['GEM_SOURCE'] || "https://rubygems.org" | ||
|
||
def location_for(place, fake_version = nil) | ||
if place =~ /^(git[:@][^#]*)#(.*)/ | ||
[fake_version, { :git => $1, :branch => $2, :require => false }].compact | ||
elsif place =~ /^file:\/\/(.*)/ | ||
['>= 0', { :path => File.expand_path($1), :require => false }] | ||
else | ||
[place, { :require => false }] | ||
end | ||
end | ||
|
||
group :test do | ||
gem 'rake' | ||
gem 'puppet', ENV['PUPPET_VERSION'] || '~> 3.8.0' | ||
gem 'rspec-puppet', git: 'https://github.com/rodjek/rspec-puppet.git' | ||
gem 'rspec-puppet-augeas' | ||
gem 'ruby-augeas' | ||
gem 'puppetlabs_spec_helper' | ||
gem 'metadata-json-lint' | ||
gem 'rspec-puppet-facts' | ||
gem 'rspec' | ||
gem 'puppet-blacksmith' | ||
gem 'rubocop', '0.37.2' | ||
gem 'puppet-lint-absolute_classname-check' | ||
gem 'puppet-lint-leading_zero-check' | ||
gem 'puppet-lint-trailing_comma-check' | ||
gem 'puppet-lint-version_comparison-check' | ||
gem 'puppet-lint-classes_and_types_beginning_with_digits-check' | ||
gem 'puppet-lint-unquoted_string-check' | ||
gem 'puppet-lint-variable_contains_upcase' | ||
gem 'rake', :require => false | ||
gem 'rspec-puppet', :require => false, :git => 'https://github.com/rodjek/rspec-puppet.git' | ||
gem 'puppet-lint', :require => false, :git => 'https://github.com/rodjek/puppet-lint.git' | ||
gem 'metadata-json-lint', :require => false | ||
gem 'rspec-puppet-facts', :require => false | ||
gem 'rspec', :require => false | ||
gem 'puppet-blacksmith', :require => false, :git => 'https://github.com/voxpupuli/puppet-blacksmith.git' | ||
gem 'voxpupuli-release', :require => false, :git => 'https://github.com/voxpupuli/voxpupuli-release-gem.git' | ||
gem 'rubocop', '0.37.2', :require => false | ||
gem 'rspec-puppet-utils', :require => false | ||
gem 'puppetlabs_spec_helper', :require => false | ||
gem 'puppet-lint-absolute_classname-check', :require => false | ||
gem 'puppet-lint-leading_zero-check', :require => false | ||
gem 'puppet-lint-trailing_comma-check', :require => false | ||
gem 'puppet-lint-version_comparison-check', :require => false | ||
gem 'puppet-lint-classes_and_types_beginning_with_digits-check', :require => false | ||
gem 'puppet-lint-unquoted_string-check', :require => false | ||
gem 'puppet-lint-variable_contains_upcase', :require => false | ||
end | ||
|
||
group :development do | ||
gem 'travis' | ||
gem 'travis-lint' | ||
gem 'guard-rake' | ||
gem 'travis', :require => false | ||
gem 'travis-lint', :require => false | ||
gem 'guard-rake', :require => false | ||
end | ||
|
||
group :system_tests do | ||
gem 'beaker' | ||
gem 'beaker-rspec' | ||
gem 'beaker', :require => false | ||
if beaker_version = ENV['BEAKER_VERSION'] | ||
gem 'beaker', *location_for(beaker_version) | ||
end | ||
if beaker_rspec_version = ENV['BEAKER_RSPEC_VERSION'] | ||
gem 'beaker-rspec', *location_for(beaker_rspec_version) | ||
else | ||
gem 'beaker-rspec', :require => false | ||
end | ||
gem 'beaker-puppet_install_helper', :require => false | ||
end | ||
|
||
|
||
|
||
if facterversion = ENV['FACTER_GEM_VERSION'] | ||
gem 'facter', facterversion.to_s, :require => false, :groups => [:test] | ||
else | ||
gem 'facter', :require => false, :groups => [:test] | ||
end | ||
|
||
ENV['PUPPET_VERSION'].nil? ? puppetversion = '3.8.4' : puppetversion = ENV['PUPPET_VERSION'].to_s | ||
gem 'puppet', puppetversion, :require => false, :groups => [:test] | ||
|
||
# vim:ft=ruby |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
HOSTS: | ||
centos-511-x64: | ||
roles: | ||
- master | ||
platform: el-5-x86_64 | ||
box: puppetlabs/centos-5.11-64-nocm | ||
hypervisor: vagrant | ||
CONFIG: | ||
type: foss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
HOSTS: | ||
centos-66-x64: | ||
roles: | ||
- master | ||
- database | ||
- dashboard | ||
platform: el-6-x86_64 | ||
box: puppetlabs/centos-6.6-64-puppet-enterprise | ||
hypervisor: vagrant | ||
CONFIG: | ||
type: pe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
HOSTS: | ||
centos-66-x64: | ||
roles: | ||
- master | ||
platform: el-6-x86_64 | ||
box: puppetlabs/centos-6.6-64-nocm | ||
hypervisor: vagrant | ||
CONFIG: | ||
type: foss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
HOSTS: | ||
centos-72-x64: | ||
roles: | ||
- master | ||
platform: el-7-x86_64 | ||
box: puppetlabs/centos-7.2-64-nocm | ||
hypervisor: vagrant | ||
CONFIG: | ||
type: foss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
HOSTS: | ||
debian-78-x64: | ||
roles: | ||
- master | ||
platform: debian-7-amd64 | ||
box: puppetlabs/debian-7.8-64-nocm | ||
hypervisor: vagrant | ||
CONFIG: | ||
type: foss |
Oops, something went wrong.