From 10767a0016b0f46aceab9ac97738390035a112dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Wed, 11 Oct 2017 15:52:10 -0400 Subject: copy CI infra from the shared apt module as-is --- Gemfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Gemfile (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..226d7ae --- /dev/null +++ b/Gemfile @@ -0,0 +1,22 @@ +source "https://rubygems.org" + +group :development, :unit_tests do + gem "rake" + gem "rspec-puppet", "~> 2.1", :require => false + gem "rspec-core" + gem "puppetlabs_spec_helper" + gem "metadata-json-lint" + gem "rspec-puppet-facts" + gem "mocha" +end + +group :system_tests do + gem 'beaker' + gem 'beaker-rspec' + gem 'beaker_spec_helper' + gem 'serverspec' +end + +gem "puppet", ENV['PUPPET_VERSION'] || ENV['GEM_PUPPET_VERSION'] || ENV['PUPPET_GEM_VERSION'] || '~> 3.7.0' +gem "facter", ENV['FACTER_VERSION'] || ENV['GEM_FACTER_VERSION'] || ENV['FACTER_GEM_VERSION'] || '~> 2.2.0' + -- cgit v1.2.3 From a37622be65ff288f0b22ca0412521eb186a87e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Wed, 11 Oct 2017 15:58:41 -0400 Subject: add semantic puppet gem, as recommended by the error message on the CI --- Gemfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 226d7ae..cd1f56f 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,7 @@ group :development, :unit_tests do gem "rspec-puppet", "~> 2.1", :require => false gem "rspec-core" gem "puppetlabs_spec_helper" + gem "semantic_puppet gem" gem "metadata-json-lint" gem "rspec-puppet-facts" gem "mocha" -- cgit v1.2.3 From 024e4d49d6a4afce4fa309c87c722763ac3ce706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Wed, 11 Oct 2017 16:25:50 -0400 Subject: fix semantic_puppet gem name in Gemfile --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index cd1f56f..7a16b94 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,7 @@ group :development, :unit_tests do gem "rspec-puppet", "~> 2.1", :require => false gem "rspec-core" gem "puppetlabs_spec_helper" - gem "semantic_puppet gem" + gem "semantic_puppet" gem "metadata-json-lint" gem "rspec-puppet-facts" gem "mocha" -- cgit v1.2.3