falkorlib 0.3.11 → 0.3.12
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/tasks/puppet_modules.rake +8 -8
- data/lib/falkorlib/tasks/rspec.rake +1 -1
- data/lib/falkorlib/version.rb +1 -1
- 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: 48621a1943781dfdea2558deaf7835d99ac2ecaf
|
4
|
+
data.tar.gz: 59f699b1e866574ae3f30de108467be662405287
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04f31de4f018201535bacb98160b630bc953212814de6349c429e8c479e87725999ea4aaa3477b28de1bf38ba0eeaabfc936dfa6671c5bbcd51076ca0e43c7d6
|
7
|
+
data.tar.gz: ca21f90e2c03fdac3d9df7b2ea95fab2508e0d909a29c6113331a27f47f73dd3ab19ae3d7791776f0e379fa895b20715f9a9b88670676281a50096bf22771c46
|
data/Gemfile.lock
CHANGED
@@ -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: <
|
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:
|
69
|
-
desc "
|
70
|
-
task :
|
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
|
-
|
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).
|
data/lib/falkorlib/version.rb
CHANGED