falkorlib 0.5.4 → 0.5.5
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f27a5b57c6647e771c0c6190e53ddae4d23d2b1c
|
|
4
|
+
data.tar.gz: c0ab749ae56200126b2d27830eefbba4e5ffee04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 774583ab6607a1c0309af8ee480e2bf0b2fd9173c1c56f3d99d7607c39f11d131c8ccd181dce86a7979fb5d74531f1a08197b69b3f115dadbdd01084b3513d5b
|
|
7
|
+
data.tar.gz: aa2a4df14d8700d8a8a6f113dc8770ff7b813918e1b66ab4aa0f03dda6643c312e0235ef864f9fe49f7b8c230063913da68757bd9588e1dec1b03787f5ccd861
|
data/Gemfile.lock
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
################################################################################
|
|
3
|
-
# Time-stamp: <
|
|
3
|
+
# Time-stamp: <Tue 2015-05-26 19:03 svarrette>
|
|
4
4
|
################################################################################
|
|
5
5
|
# Interface for the main Puppet Module operations
|
|
6
6
|
#
|
|
@@ -170,8 +170,9 @@ module FalkorLib #:nodoc:
|
|
|
170
170
|
FalkorLib::GitFlow.start('feature', "bootstrapping", moduledir)
|
|
171
171
|
end
|
|
172
172
|
[ 'metadata.json',
|
|
173
|
-
'docs/', 'mkdocs.yml', 'LICENSE', '.gitignore', '.
|
|
174
|
-
'
|
|
173
|
+
'docs/', 'mkdocs.yml', 'LICENSE', '.gitignore', '.pmignore',
|
|
174
|
+
'.ruby-version', '.ruby-gemset', 'Gemfile',
|
|
175
|
+
'.vagrant_init.rb', 'Rakefile', 'Vagrantfile' ].each do |f|
|
|
175
176
|
FalkorLib::Git.add(File.join(moduledir, f))
|
|
176
177
|
end
|
|
177
178
|
end
|
|
@@ -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: <Tue 2015-05-19
|
|
4
|
+
# Time-stamp: <Tue 2015-05-26 19:21 svarrette>
|
|
5
5
|
#
|
|
6
6
|
# Copyright (c) 2014 Sebastien Varrette <Sebastien.Varrette@uni.lu>
|
|
7
7
|
# http://varrette.gforge.uni.lu
|
|
@@ -126,7 +126,7 @@ namespace :templates do
|
|
|
126
126
|
task :all do
|
|
127
127
|
info "Upgrade all key module files from FalkorLib templates"
|
|
128
128
|
FalkorLib::Puppet::Modules.upgrade()
|
|
129
|
-
end
|
|
129
|
+
end
|
|
130
130
|
|
|
131
131
|
[ 'docs', 'readme', 'rake', 'vagrant' ].each do |t|
|
|
132
132
|
########### templates:upgrade:{readme,rake,vagrant} ###########
|
data/lib/falkorlib/version.rb
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
Copyright (c) <%= Time.now.year %> <%= config[:author] %> <<%= config[:mail] %>>
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
| [Project Page](<%= config[:project_page] %>) | [Sources](<%= config[:source] %>) | [Documentation](
|
|
16
|
+
| [Project Page](<%= config[:project_page] %>) | [Sources](<%= config[:source] %>) | [Documentation](https://<%= config[:docs_project] %>.readthedocs.org/en/latest/) | [Issues](<%= config[:issues_url] %>) |
|
|
17
17
|
|
|
18
18
|
## Synopsis
|
|
19
19
|
|
|
@@ -118,7 +118,7 @@ You can submit bug / issues / feature request using the [<%= config[:name] %> Pu
|
|
|
118
118
|
## Developments / Contributing to the code
|
|
119
119
|
|
|
120
120
|
If you want to contribute to the code, you shall be aware of the way this module is organized.
|
|
121
|
-
These elements are detailed on [`docs/contributing.md`](contributing.md).
|
|
121
|
+
These elements are detailed on [`docs/contributing.md`](contributing/index.md).
|
|
122
122
|
|
|
123
123
|
You are more than welcome to contribute to its development by [sending a pull request](https://help.github.com/articles/using-pull-requests).
|
|
124
124
|
|
|
@@ -131,7 +131,21 @@ See [`docs/vagrant.md`](vagrant.md) for more details.
|
|
|
131
131
|
|
|
132
132
|
## Online Documentation
|
|
133
133
|
|
|
134
|
-
[Read the Docs](https://readthedocs.org/) aka RTFD hosts documentation for the open source community and the [<%= config[:name] %>](<%= config[:
|
|
134
|
+
[Read the Docs](https://readthedocs.org/) aka RTFD hosts documentation for the open source community and the [<%= config[:name] %>](<%= config[:project_page] %>) puppet module has its documentation (see the `docs/` directly) hosted on [readthedocs](http://<%= config[:docs_project] %>.rtfd.org).
|
|
135
135
|
|
|
136
136
|
See [`docs/rtfd.md`](rtfd.md) for more details.
|
|
137
137
|
|
|
138
|
+
## Licence
|
|
139
|
+
|
|
140
|
+
This project and the sources proposed within this repository are released under the terms of the [<%= config[:license] %>](LICENCE) licence.
|
|
141
|
+
|
|
142
|
+
<% logos = {
|
|
143
|
+
"Apache-2.0" => "https://www.apache.org/images/feather-small.gif",
|
|
144
|
+
"BSD" => "http://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/License_icon-bsd.svg/200px-License_icon-bsd.svg.png",
|
|
145
|
+
"GPL-2.0" => "https://licensebuttons.net/l/GPL/2.0/88x62.png",
|
|
146
|
+
"GPL-3.0" => "https://www.gnu.org/graphics/gplv3-88x31.png",
|
|
147
|
+
"LGPL-2.1" => "https://www.gnu.org/graphics/lgplv3-88x31.png",
|
|
148
|
+
"LGPL-3.0" => "https://www.gnu.org/graphics/lgplv3-88x31.png",
|
|
149
|
+
"MIT" => "http://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/License_icon-mit-2.svg/200px-License_icon-mit-2.svg.png"
|
|
150
|
+
} %>
|
|
151
|
+
[](LICENSE)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: falkorlib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastien Varrette
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-05-
|
|
11
|
+
date: 2015-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -416,6 +416,7 @@ files:
|
|
|
416
416
|
- templates/Rakefile/rakefile_gitflow.erb
|
|
417
417
|
- templates/motd/motd.erb
|
|
418
418
|
- templates/puppet/modules/.gitignore
|
|
419
|
+
- templates/puppet/modules/.pmignore
|
|
419
420
|
- templates/puppet/modules/.vagrant_init.rb
|
|
420
421
|
- templates/puppet/modules/Gemfile
|
|
421
422
|
- templates/puppet/modules/README.md.erb
|