falkorlib 0.4.9 → 0.4.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 547ac0a671298d19987ffa23c3fac3d6172a94f9
4
- data.tar.gz: 711e6f847ac8df89ccb2991978bcdb03852de130
3
+ metadata.gz: bb9026fd0b9b55a2bb876da343ee6725ff02c1f5
4
+ data.tar.gz: 2165d90daf5a3278461745deb8d3060c34f7d0f2
5
5
  SHA512:
6
- metadata.gz: 9bcc4f2c3d71e273642155008f898266606e32630b3a8d2c98eb15eba1b8c1f3f859ad18bfe6eae768bce777968f9034437e215c99d89e6a2c72daec16437f4d
7
- data.tar.gz: c8043d01e52d548282c8266ad8adc8cf949bb60d11582f7283ec52b84e6cb8bd211355b5d1e5316c463ea09746fd68e4ac8c93154e91652df5e098485b220a34
6
+ metadata.gz: f7abcd32ab1434af8a3e264f8bb7f133f44cb171c2854df8b2266ada84d2949860062831d3dc55262e30e3f9d3a6c914acced9662b7def46ad87040ec9d282c8
7
+ data.tar.gz: f146b8c4e47ae0222bce5cddf503366a8277fbd822e233247f38375a7b89b230a8777398814a822e498c1a0eae1ec29a9bf622e4c2b1477b2ba4be39364ea801
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- falkorlib (0.4.9)
4
+ falkorlib (0.4.10)
5
5
  artii (>= 2.1)
6
6
  awesome_print (~> 1.2)
7
7
  configatron (~> 3.2)
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  ################################################################################
3
- # Time-stamp: <Fri 2015-05-08 16:19 svarrette>
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)
@@ -19,7 +19,7 @@ module FalkorLib #:nodoc:
19
19
  # MAJOR: Defines the major version
20
20
  # MINOR: Defines the minor version
21
21
  # PATCH: Defines the patch version
22
- MAJOR, MINOR, PATCH = 0, 4, 9
22
+ MAJOR, MINOR, PATCH = 0, 4, 10
23
23
 
24
24
  module_function
25
25
 
@@ -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:21 svarrette>
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
- #d.should == (upgraded_files_default - 1)
172
+ #d.should == (upgraded_files_default - 1)
173
173
  end
174
174
 
175
175
  it "#upgrade -- both include and exclude files" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: falkorlib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.9
4
+ version: 0.4.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastien Varrette