From 8ca75f6d074b83ee48d9ce713cdb3e28e57d2cf8 Mon Sep 17 00:00:00 2001 From: mh Date: Thu, 28 Jan 2016 00:55:26 +0100 Subject: update module to make it work with all the new features of trocla 0.2.2 --- Gemfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Gemfile (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..71032cf --- /dev/null +++ b/Gemfile @@ -0,0 +1,23 @@ +source 'https://rubygems.org' + +if ENV.key?('PUPPET_VERSION') + puppetversion = "~> #{ENV['PUPPET_VERSION']}" +else + puppetversion = ['>= 3.8.4'] +end + +if RUBY_VERSION == '1.8.7' + puppetversion = ['~> 3.8.4'] + gem 'i18n', '~> 0.6.11' + gem 'activesupport', '~> 3.2' + gem 'highline', '~> 1.6.21' + gem 'librarian-puppet', '~> 1.0.0' + gem 'rspec', '~> 3.1.0' +else + gem 'librarian-puppet' +end + +gem 'puppet', puppetversion +gem 'puppet-lint' +gem 'puppetlabs_spec_helper' +gem 'rake' -- cgit v1.2.3