diff options
author | Micah Anderson <micah@riseup.net> | 2016-11-04 10:54:28 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2016-11-04 10:54:28 -0400 |
commit | 34a381efa8f6295080c843f86bfa07d4e41056af (patch) | |
tree | 9282cf5d4c876688602705a7fa0002bc4a810bde /tests/platform-ci/Gemfile | |
parent | 0a72bc6fd292bf9367b314fcb0347c4d35042f16 (diff) | |
parent | 5821964ff7e16ca7aa9141bd09a77d355db492a9 (diff) |
Merge branch 'develop'
Diffstat (limited to 'tests/platform-ci/Gemfile')
-rw-r--r-- | tests/platform-ci/Gemfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/platform-ci/Gemfile b/tests/platform-ci/Gemfile new file mode 100644 index 00000000..36f556e5 --- /dev/null +++ b/tests/platform-ci/Gemfile @@ -0,0 +1,17 @@ +source "https://rubygems.org" + +group :test do + gem "rake" + gem "rspec" + gem "puppet", ENV['PUPPET_VERSION'] || ENV['GEM_PUPPET_VERSION'] || ENV['PUPPET_GEM_VERSION'] || '~> 3.8' + gem "facter", ENV['FACTER_VERSION'] || ENV['GEM_FACTER_VERSION'] || ENV['FACTER_GEM_VERSION'] || '~> 2.2.0' + gem "rspec-puppet" + gem "puppetlabs_spec_helper" + gem "metadata-json-lint" + gem "rspec-puppet-facts" + gem "mocha" + # Use puppet-catalog-test from git because last released gem 0.4.2 gives a deprecation + # warning: "[DEPRECATION] `last_comment` is deprecated. Please use `last_description` instead." + gem "puppet-catalog-test", :git => 'https://github.com/invadersmustdie/puppet-catalog-test.git' + gem "leap_cli", :git => 'https://leap.se/git/leap_cli.git', :branch => 'develop' +end |