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: 2e28d97f7a88cce31cc5f23032ccdd23b887d8ce
4
- data.tar.gz: aec4b454bf7177169e6195026d19c3c21390fe62
3
+ metadata.gz: f27a5b57c6647e771c0c6190e53ddae4d23d2b1c
4
+ data.tar.gz: c0ab749ae56200126b2d27830eefbba4e5ffee04
5
5
  SHA512:
6
- metadata.gz: 15a8dd62ad3968beed584d5122cbf82899fc5192f4b60cb8d314839a2e707867c94c09760cdb74fdbf0d0e6929bdc2516b34c133e1a7af582919a0e55bb0e1ed
7
- data.tar.gz: 67bc8769082c8a4e08ae1bfafeb7a5066c3a9597752ccf0902d155e18b4238e7742170d022df0017143bca0c8e7c54b2352e8cf3cf2911b412569dce4d26f70f
6
+ metadata.gz: 774583ab6607a1c0309af8ee480e2bf0b2fd9173c1c56f3d99d7607c39f11d131c8ccd181dce86a7979fb5d74531f1a08197b69b3f115dadbdd01084b3513d5b
7
+ data.tar.gz: aa2a4df14d8700d8a8a6f113dc8770ff7b813918e1b66ab4aa0f03dda6643c312e0235ef864f9fe49f7b8c230063913da68757bd9588e1dec1b03787f5ccd861
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- falkorlib (0.5.4)
4
+ falkorlib (0.5.5)
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: <Wed 2015-05-20 16:18 svarrette>
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', '.ruby-version', '.ruby-gemset',
174
- 'Gemfile', '.vagrant_init.rb', 'Rakefile', 'Vagrantfile' ].each do |f|
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 10:51 svarrette>
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} ###########
@@ -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, 5, 4
22
+ MAJOR, MINOR, PATCH = 0, 5, 5
23
23
 
24
24
  module_function
25
25
 
@@ -0,0 +1,2 @@
1
+ docs/
2
+ site/
@@ -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](httpd://<%= config[:docs_project] %>.readthedocs.org/en/latest/) | [Issues](<%= config[:issues_url] %>) |
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[:projects_url] %>) puppet module has its documentation (see the `docs/` directly) hosted on [readthedocs](http://<%= config[:docs_project] %>.rtfd.org).
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
+ [![Licence](<%= logos[config[:license]] %>)](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
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-26 00:00:00.000000000 Z
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