falkorlib 0.4.9 → 0.4.10
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/falkorlib/puppet/modules.rb +2 -2
- data/lib/falkorlib/version.rb +1 -1
- data/spec/falkorlib/puppet_modules_spec.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb9026fd0b9b55a2bb876da343ee6725ff02c1f5
|
|
4
|
+
data.tar.gz: 2165d90daf5a3278461745deb8d3060c34f7d0f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7abcd32ab1434af8a3e264f8bb7f133f44cb171c2854df8b2266ada84d2949860062831d3dc55262e30e3f9d3a6c914acced9662b7def46ad87040ec9d282c8
|
|
7
|
+
data.tar.gz: f146b8c4e47ae0222bce5cddf503366a8277fbd822e233247f38375a7b89b230a8777398814a822e498c1a0eae1ec29a9bf622e4c2b1477b2ba4be39364ea801
|
data/Gemfile.lock
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
################################################################################
|
|
3
|
-
# Time-stamp: <Fri 2015-05-08 16:
|
|
3
|
+
# Time-stamp: <Fri 2015-05-08 16:33 svarrette>
|
|
4
4
|
################################################################################
|
|
5
5
|
# Interface for the main Puppet Module operations
|
|
6
6
|
#
|
|
@@ -293,7 +293,7 @@ module FalkorLib #:nodoc:
|
|
|
293
293
|
metadata = metadata(moduledir)
|
|
294
294
|
templatedir = File.join( FalkorLib.templates, 'puppet', 'modules')
|
|
295
295
|
i = 0
|
|
296
|
-
update_from_erb = [ 'README.md', 'doc/contributing.md']
|
|
296
|
+
update_from_erb = [ 'README.md', 'doc/contributing.md', 'doc/vagrant.md']
|
|
297
297
|
(update_from_erb + [ 'Gemfile', 'Rakefile', 'Vagrantfile', '.vagrant_init.rb' ]).each do |f|
|
|
298
298
|
next unless options[:exclude].nil? or ! options[:exclude].include?( f )
|
|
299
299
|
next unless options[:only].nil? or options[:only].include?(f)
|
data/lib/falkorlib/version.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#########################################
|
|
3
3
|
# puppet_modules_spec.rb
|
|
4
4
|
# @author Sebastien Varrette <Sebastien.Varrette@uni.lu>
|
|
5
|
-
# Time-stamp: <Fri 2015-05-08 16:
|
|
5
|
+
# Time-stamp: <Fri 2015-05-08 16:36 svarrette>
|
|
6
6
|
#
|
|
7
7
|
# @description Check the Puppet Modules operations
|
|
8
8
|
#
|
|
@@ -169,7 +169,7 @@ describe FalkorLib::Puppet::Modules do
|
|
|
169
169
|
:exclude => [ 'README.md']
|
|
170
170
|
})
|
|
171
171
|
d.should == 0
|
|
172
|
-
|
|
172
|
+
#d.should == (upgraded_files_default - 1)
|
|
173
173
|
end
|
|
174
174
|
|
|
175
175
|
it "#upgrade -- both include and exclude files" do
|