kafo 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bba2a822fcccda075f681db3585e6b6a7fa01280
4
- data.tar.gz: e2db6a46a325a323c1a87bc74ae7e64020bb990b
3
+ metadata.gz: 91d324d1a64249a43c1144c0004d10ec06ac7fdf
4
+ data.tar.gz: 8348a33dbabf43af7c171c05512a221b94ebbffe
5
5
  SHA512:
6
- metadata.gz: 07647c22154c5617897a626955c390b9372257aba6c8d7e626a3ed8b66bbdaa0247f418dd7b7b731041e4c9fc92016409b1b4daf91de651b7ae1b3c09f324278
7
- data.tar.gz: 01f123dddf7e1e8c7dbc7c7996a29500d6dd05c1b2c7663cdd273fcd37c0e10d8242d1d7703a68c7247e45bc5b4620284e792bec03691624bfbaafc91b772c48
6
+ metadata.gz: 1c4f76dafc8713b732a522bdb76e7edbf8400a6fe10786f487963f7b514d60d0fa95ff348b69638a2ab0fe4d84dad6ac17d2ac33f811f7804fa993d0aaa78c99
7
+ data.tar.gz: 11ec6f6db6d8025c67e6f7d8a58872760ea3b95208aff2bd2e70a41051252076848446c9ad29011b366bab01565d5eb43692a60dda9783f96ca403f1381be91a
@@ -3,7 +3,11 @@ module Kafo
3
3
  class PuppetCommand
4
4
  def initialize(command, options = [])
5
5
  @command = command
6
- @options = options.push("--modulepath #{modules_path}")
6
+
7
+ # Expand the modules_path to work around the fact that Puppet doesn't
8
+ # allow modulepath to contain relative (i.e ..) directory references as
9
+ # of 2.7.23.
10
+ @options = options.push("--modulepath #{File.expand_path(modules_path)}")
7
11
  @logger = KafoConfigure.logger
8
12
  end
9
13
 
@@ -1,4 +1,4 @@
1
1
  # encoding: UTF-8
2
2
  module Kafo
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kafo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marek Hulan