third-party-ci-tools/monitoring/puppet-ci_scoreboard/Gemfile
Mikhail S Medvedev 71a3292742 Add proof of concept puppet_ci_scoreboard module
This is a first draft of the puppet module to be used to deploy
ci-dashboard.openstack.org as described in [1].

I did not put it into a separate repository on github due to some
restrictions. Adding it here should help to collaborate using
standard review process. If we are happy with the module, we would
move it to openstack/puppet-ci_scoreboard after spec [1] is approved.

[1] https://review.openstack.org/#/c/194437/

Change-Id: I1f0311d081ef970a767470b9e5d2b0a61ec2c8e3
2015-08-20 14:26:22 -05:00

31 lines
884 B
Ruby

source 'https://rubygems.org'
group :development, :test do
gem 'puppetlabs_spec_helper', :require => false
gem 'metadata-json-lint'
# This is nice and all, but let's not worry about it until we've actually
# got puppet 4.x sorted
# gem 'puppet-lint-param-docs'
gem 'puppet-lint-absolute_classname-check'
gem 'puppet-lint-absolute_template_path'
gem 'puppet-lint-trailing_newline-check'
# Puppet 4.x related lint checks
gem 'puppet-lint-unquoted_string-check'
gem 'puppet-lint-empty_string-check'
gem 'puppet-lint-leading_zero-check'
gem 'puppet-lint-variable_contains_upcase'
gem 'puppet-lint-spaceship_operator_without_tag-check'
gem 'puppet-lint-undef_in_function-check'
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', '~> 3.0', :require => false
end
end
# vim:ft=ruby