falkorlib 0.3.11 → 0.3.12

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: b66fad570393a3c8d53f22fbb4707c4f67ed3671
4
- data.tar.gz: 1ee0a06e03794039cb1dd099fe1963ea2157e733
3
+ metadata.gz: 48621a1943781dfdea2558deaf7835d99ac2ecaf
4
+ data.tar.gz: 59f699b1e866574ae3f30de108467be662405287
5
5
  SHA512:
6
- metadata.gz: 9cc1fbce19391077964b63ed36130a1ef1936475a12835294a6e27e68dc6f545ebe766abc2051749e6ca09e56083c053a702c138084db793340e5d05c99ab872
7
- data.tar.gz: 19e995415b29a6dfaec0525c30c8b7d6a78e57aa8f96ebb3da8856ba60f17861ead2a08bceedd13235ccb43dc7479d4656916dfea6e9e09ecae6baa5a1f46aff
6
+ metadata.gz: 04f31de4f018201535bacb98160b630bc953212814de6349c429e8c479e87725999ea4aaa3477b28de1bf38ba0eeaabfc936dfa6671c5bbcd51076ca0e43c7d6
7
+ data.tar.gz: ca21f90e2c03fdac3d9df7b2ea95fab2508e0d909a29c6113331a27f47f73dd3ab19ae3d7791776f0e379fa895b20715f9a9b88670676281a50096bf22771c46
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- falkorlib (0.3.11)
4
+ falkorlib (0.3.12)
5
5
  awesome_print (~> 1.2)
6
6
  configatron (~> 3.2)
7
7
  diffy (>= 3.0)
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  ################################################################################
3
3
  # puppet_modules.rake - Special tasks for the management of Puppet modules
4
- # Time-stamp: <Ven 2014-09-05 22:27 svarrette>
4
+ # Time-stamp: <Sam 2014-09-06 16:32 svarrette>
5
5
  #
6
6
  # Copyright (c) 2014 Sebastien Varrette <Sebastien.Varrette@uni.lu>
7
7
  # http://varrette.gforge.uni.lu
@@ -65,9 +65,9 @@ namespace :puppet do
65
65
  FalkorLib::Puppet::Modules.parse()
66
66
  end # task parse
67
67
 
68
- ########### puppet:module:check ###########
69
- desc "Check the syntax and programming style of the module"
70
- task :check => [
68
+ ########### puppet:module:validate ###########
69
+ desc "Validate the module by checking the syntax and programming style of the module"
70
+ task :validate => [
71
71
  :syntax,
72
72
  :lint
73
73
  ]
@@ -157,10 +157,10 @@ require 'puppet-syntax/tasks/puppet-syntax'
157
157
  PuppetSyntax.future_parser = true
158
158
  PuppetSyntax.exclude_paths = exclude_tests_paths
159
159
 
160
- task :syntax_info do
161
- info "checking syntax for Puppet manifests, templates, and Hiera YAML"
162
- end
163
- task :syntax => :syntax_info
160
+ # task :syntax_info do
161
+ # info "checking syntax for Puppet manifests, templates, and Hiera YAML"
162
+ # end
163
+ # task :syntax => :syntax_info
164
164
 
165
165
 
166
166
  ################################################
@@ -32,7 +32,7 @@ begin
32
32
  # Glob pattern to match files.
33
33
  #t.pattern = "spec/**/common_*.rb"
34
34
  #t.pattern = "spec/**/versioning_*spec.rb"
35
- t.pattern = "spec/**/puppet*spec.rb"
35
+ #t.pattern = "spec/**/puppet*spec.rb"
36
36
 
37
37
  # Whether or not to fail Rake when an error occurs (typically when
38
38
  # examples fail).
@@ -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, 3, 11
22
+ MAJOR, MINOR, PATCH = 0, 3, 12
23
23
 
24
24
  module_function
25
25
 
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.3.11
4
+ version: 0.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastien Varrette