falkorlib 0.6.1 → 0.6.2
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/cli/new.rb +13 -1
- data/lib/falkorlib/version.rb +1 -1
- data/templates/puppet/modules/Vagrantfile +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7600749c8d04ba49cef67281021af59e6ac98265
|
|
4
|
+
data.tar.gz: 8783231c2fb2d13c2752e2190b6132eaceab3a28
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8aeecab51a7e4fa565e81fef7097ac8829134a366d60425fc971de179c73c19b7f0819cdfc0e498f03fc9620790f31ea0ab6f8033d0cdada7409f9434cd2f5c
|
|
7
|
+
data.tar.gz: 6148a7f2231b8c9e5a6892a51f0e1e21497f5e9909e968c16594835a0e44b727e5f85670b1ce44cb5cfe6ca29e40e92730b5b7980c796663618f702ac15f7212
|
data/Gemfile.lock
CHANGED
data/lib/falkorlib/cli/new.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
################################################################################
|
|
3
|
-
# Time-stamp: <
|
|
3
|
+
# Time-stamp: <Wed 2015-09-16 21:59 svarrette>
|
|
4
4
|
################################################################################
|
|
5
5
|
|
|
6
6
|
require 'thor'
|
|
@@ -57,6 +57,18 @@ By default, NAME is '.' meaning that the repository will be initialized in the c
|
|
|
57
57
|
FalkorLib::Bootstrap.repo(name, options)
|
|
58
58
|
end # repo
|
|
59
59
|
|
|
60
|
+
###### articles ######
|
|
61
|
+
#......................................
|
|
62
|
+
# desc "article [options]", "Bootstrap LaTeX Article"
|
|
63
|
+
# method_option :name, :aliases => '-n', :desc => 'Name of the LaTeX project'
|
|
64
|
+
# method_option :dir, :aliases => '-d', :desc => 'Project directory (relative to the git root directory)'
|
|
65
|
+
# method_option :type, :default => 'ieee', :aliases => '-t', :desc => 'LaTeX Style to apply'
|
|
66
|
+
# #___________________
|
|
67
|
+
# def article(path = Dir.pwd)
|
|
68
|
+
# FalkorLib::Bootstrap.latex(path, :article, options)
|
|
69
|
+
# end # article
|
|
70
|
+
|
|
71
|
+
|
|
60
72
|
###### slides ######
|
|
61
73
|
#......................................
|
|
62
74
|
desc "slides [options]", "Bootstrap LaTeX Beamer slides"
|
data/lib/falkorlib/version.rb
CHANGED
|
@@ -11,8 +11,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
|
11
11
|
# (nearly) All below boxes were generated using [vagrant-vms](https://github.com/Falkor/vagrant-vms/)
|
|
12
12
|
{
|
|
13
13
|
:centos_7 => {
|
|
14
|
-
:box => "svarrette/centos-7",
|
|
15
|
-
:url => "https://atlas.hashicorp.com/svarrette/boxes/centos-7"
|
|
14
|
+
:box => "svarrette/centos-7-puppet",
|
|
15
|
+
:url => "https://atlas.hashicorp.com/svarrette/boxes/centos-7-puppet"
|
|
16
16
|
},
|
|
17
17
|
:debian_7 => {
|
|
18
18
|
:box => "svarrette/debian-7-puppet",
|
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.6.
|
|
4
|
+
version: 0.6.2
|
|
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-09-
|
|
11
|
+
date: 2015-09-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|