We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8621d91 commit 87fa8fdCopy full SHA for 87fa8fd
.gitignore
@@ -1 +1,3 @@
1
.*.swp
2
+Gemfile.lock
3
+spec/fixtures/
.travis.yml
@@ -0,0 +1,13 @@
+language: ruby
+env:
+ - PUPPET_VERSION=4.2.0
4
+ - PUPPET_VERSION=4.1.0
5
+ - PUPPET_VERSION=4.0.0
6
+ - PUPPET_VERSION=3.8.1
7
+ - PUPPET_VERSION=3.7.0
8
+rvm:
9
+ - 2.2.0
10
+ - 2.1.0
11
+ - 2.0.0
12
+script:
13
+ - "bundle exec rake spec"
Gemfile
@@ -0,0 +1,6 @@
+source 'https://rubygems.org'
+
+gem 'puppet', nil || ENV['PUPPET_VERSION']
+gem 'puppetlabs_spec_helper', '0.10.3'
+gem 'webmock', '1.22.1'
+gem 'puppetclassify', '0.1.0'
Rakefile
@@ -0,0 +1 @@
+require 'puppetlabs_spec_helper/rake_tasks'
0 commit comments