falkorlib 0.6.17 → 0.6.18
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 +11 -0
- data/Gemfile.lock +11 -18
- data/bin/falkor +7 -6
- data/completion/.gitignore +1 -0
- data/completion/_falkor +203 -0
- data/falkorlib.gemspec +159 -214
- data/lib/falkorlib/bootstrap/base.rb +19 -9
- data/lib/falkorlib/bootstrap/link.rb +8 -4
- data/lib/falkorlib/cli/link.rb +47 -41
- data/lib/falkorlib/cli/new.rb +146 -141
- data/lib/falkorlib/cli.rb +14 -11
- data/lib/falkorlib/common.rb +3 -3
- data/lib/falkorlib/version.rb +1 -1
- data/templates/gems/Gemfile +3 -0
- data/templates/gems/LICENCE.md +22 -0
- data/templates/gems/README.md +192 -0
- data/templates/gems/Rakefile +39 -0
- data/templates/gems/lib/sysadmin-warrior/loader.rb +5 -0
- data/templates/gems/lib/sysadmin-warrior/version.rb +49 -0
- data/templates/gems/lib/sysadmin-warrior.rb +40 -0
- data/templates/gems/sysadmin-warrior.gemspec +200 -0
- data/templates/latex/.gitignore +1 -0
- data/templates/latex/letter/_content.md.erb +6 -3
- data/templates/latex/letter/main.tex.erb +23 -15
- metadata +19 -28
- data/completion/falkor.zsh +0 -25
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.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastien Varrette
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -226,26 +226,6 @@ dependencies:
|
|
226
226
|
- - "~>"
|
227
227
|
- !ruby/object:Gem::Version
|
228
228
|
version: '1.0'
|
229
|
-
- !ruby/object:Gem::Dependency
|
230
|
-
name: rspec
|
231
|
-
requirement: !ruby/object:Gem::Requirement
|
232
|
-
requirements:
|
233
|
-
- - "~>"
|
234
|
-
- !ruby/object:Gem::Version
|
235
|
-
version: '2.7'
|
236
|
-
- - ">="
|
237
|
-
- !ruby/object:Gem::Version
|
238
|
-
version: 2.7.0
|
239
|
-
type: :development
|
240
|
-
prerelease: false
|
241
|
-
version_requirements: !ruby/object:Gem::Requirement
|
242
|
-
requirements:
|
243
|
-
- - "~>"
|
244
|
-
- !ruby/object:Gem::Version
|
245
|
-
version: '2.7'
|
246
|
-
- - ">="
|
247
|
-
- !ruby/object:Gem::Version
|
248
|
-
version: 2.7.0
|
249
229
|
- !ruby/object:Gem::Dependency
|
250
230
|
name: pry
|
251
231
|
requirement: !ruby/object:Gem::Requirement
|
@@ -330,11 +310,12 @@ dependencies:
|
|
330
310
|
- - "~>"
|
331
311
|
- !ruby/object:Gem::Version
|
332
312
|
version: '0'
|
333
|
-
description: "This is my personal library I use to share the Ruby tidbits
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
313
|
+
description: "This is my personal library I use to share the Ruby tidbits and Rake
|
314
|
+
tasks I made it for my various projects, and also to bootstrap easily several element
|
315
|
+
of my daily workflow (new git repository, new beamer slides etc.).\nThis is also
|
316
|
+
my first gem so any comments on the code/organization are welcome, I'm a newbie
|
317
|
+
in this domain. \nNote that I used [Noe](https://github.com/blambeau/noe) to bootstrap
|
318
|
+
this project and get a fully documented environment."
|
338
319
|
email:
|
339
320
|
- Sebastien.Varrette@uni.lu
|
340
321
|
executables:
|
@@ -357,8 +338,9 @@ files:
|
|
357
338
|
- Rakefile
|
358
339
|
- bin/falkor
|
359
340
|
- binscripts/bootstrap.sh
|
341
|
+
- completion/.gitignore
|
342
|
+
- completion/_falkor
|
360
343
|
- completion/falkor.bash
|
361
|
-
- completion/falkor.zsh
|
362
344
|
- falkorlib.gemspec
|
363
345
|
- lib/falkorlib.rb
|
364
346
|
- lib/falkorlib/bootstrap.rb
|
@@ -417,6 +399,15 @@ files:
|
|
417
399
|
- templates/Rakefile/footer_rakefile.erb
|
418
400
|
- templates/Rakefile/header_rakefile.erb
|
419
401
|
- templates/Rakefile/rakefile_gitflow.erb
|
402
|
+
- templates/gems/Gemfile
|
403
|
+
- templates/gems/LICENCE.md
|
404
|
+
- templates/gems/README.md
|
405
|
+
- templates/gems/Rakefile
|
406
|
+
- templates/gems/lib/sysadmin-warrior.rb
|
407
|
+
- templates/gems/lib/sysadmin-warrior/loader.rb
|
408
|
+
- templates/gems/lib/sysadmin-warrior/version.rb
|
409
|
+
- templates/gems/sysadmin-warrior.gemspec
|
410
|
+
- templates/latex/.gitignore
|
420
411
|
- templates/latex/beamer/_content.md.erb
|
421
412
|
- templates/latex/beamer/main.tex.erb
|
422
413
|
- templates/latex/images/logo_UL.pdf
|
data/completion/falkor.zsh
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
#!/usr/bin/env zsh
|
2
|
-
################################################################################
|
3
|
-
# Time-stamp: <Lun 2015-01-19 16:24 svarrette>
|
4
|
-
#
|
5
|
-
# ZSH completion for [FalkorLib](https://github.com/Falkor/falkorlib)
|
6
|
-
#
|
7
|
-
# Copyright (c) 2015 Sebastien Varrette <Sebastien.Varrette@uni.lu>
|
8
|
-
################################################################################
|
9
|
-
|
10
|
-
if [[ ! -o interactive ]]; then
|
11
|
-
return
|
12
|
-
fi
|
13
|
-
|
14
|
-
compctl -f -K _falkor falkor
|
15
|
-
|
16
|
-
_falkor() {
|
17
|
-
local words completions
|
18
|
-
read -cA words
|
19
|
-
|
20
|
-
if [ "${#words}" -eq 2 ]; then
|
21
|
-
completions="$(falkor commands)"
|
22
|
-
fi
|
23
|
-
|
24
|
-
reply=("${(ps:\n:)completions}")
|
25
|
-
}
|