falkorlib 0.6.17 → 0.6.18

Sign up to get free protection for your applications and to get access to all the features.
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.17
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-06-29 00:00:00.000000000 Z
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, Rake and
334
- Capistrano tasks I made for my various projects. \nThis is also my first gem so
335
- any comments on the code/organization are welcome, I'm a newbie in this domain.
336
- \nNote that I used [Noe](https://github.com/blambeau/noe) to bootstrap this project
337
- and get a fully documented environment."
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
@@ -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
- }