falkorlib 0.6.0 → 0.6.1

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: 36f55fff2b9f80d42204efee707a47d60b9a03f3
4
- data.tar.gz: 8f9dce581e2d500160ad1c9bff297bb299e8ee1f
3
+ metadata.gz: c3aeaab1388bdcd3c06f47b30b03028d293ca273
4
+ data.tar.gz: 05b95cfffdbc646d9280923885a443997c691252
5
5
  SHA512:
6
- metadata.gz: 9aed6566b4f204a14bfe7c5e2da999eecaa499474253a7be66632e0296d7cf1c7c79b7dd479e3d41c9d2450e0bcfcba1372b3a9cd8834d16799be91236b6d13d
7
- data.tar.gz: 66e5b3b0f5d87830e5a9084b48e9ffe5c39cd2084bb9f581d7793a96ce5fcdf4709d0b6390eb5dd9e3cf65be28e6a886e7417cefc4949038ac58e3b3e3024f1f
6
+ metadata.gz: 9367a29b2e132fbbda949965e7cc5af67478fa7d9072a1de6ed0c1241d43bc2f4f3668f5e7b4dea1b4cf112d8ce3d7920306d20af596546eac2606b69e8e01ab
7
+ data.tar.gz: 4bb0bd48c47fb2d8aed2243f1a90652b7f80c22e9761fa1057e36790db9c604f2bd41347f352fa839c0b9ddf4ad759e25135933c511e44c0a69caa0c1f2b8bba
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- falkorlib (0.6.0)
4
+ falkorlib (0.6.1)
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: <Tue 2015-06-16 10:03 svarrette>
3
+ # Time-stamp: <Wed 2015-09-16 21:37 svarrette>
4
4
  ################################################################################
5
5
  # Interface for the main Bootstrapping operations
6
6
  #
@@ -293,7 +293,7 @@ module FalkorLib
293
293
  if remotes.include?( 'origin' )
294
294
  info "perform remote synchronization"
295
295
  [ :master, :develop ].each do |t|
296
- FalkorLib::Git.publish(gitflow_branch[t.to_sym], path, 'origin')
296
+ FalkorLib::Git.publish(gitflow_branches[t.to_sym], path, 'origin')
297
297
  end
298
298
  else
299
299
  warning "no Git remote 'origin' found, thus no remote synchronization performed"
@@ -508,7 +508,7 @@ module FalkorLib
508
508
  end
509
509
  repo(path, options) unless FalkorLib::Git.init?(path)
510
510
  rootdir = FalkorLib::Git.rootdir(path)
511
- info "Initiate a LaTeX project from the Git root directory: '#{rootdir}'"
511
+ info "Initiate a LaTeX #{type} project from the Git root directory: '#{rootdir}'"
512
512
  really_continue? unless options[:force]
513
513
  relative_path_to_root = (Pathname.new( FalkorLib::Git.rootdir(dir) ).relative_path_from Pathname.new( File.realpath(path))).to_s
514
514
  config[:name] = options[:name] ? options[:name] : ask("\tEnter the name of the #{type} project: ", File.basename(path))
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  ################################################################################
3
- # Time-stamp: <Tue 2015-06-16 09:05 svarrette>
3
+ # Time-stamp: <Tue 2015-06-16 10:22 svarrette>
4
4
  ################################################################################
5
5
 
6
6
  require 'thor'
@@ -61,6 +61,7 @@ By default, NAME is '.' meaning that the repository will be initialized in the c
61
61
  #......................................
62
62
  desc "slides [options]", "Bootstrap LaTeX Beamer slides"
63
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)'
64
65
  #___________________
65
66
  def slides(path = Dir.pwd)
66
67
  FalkorLib::Bootstrap.latex(path, :beamer, options)
@@ -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, 6, 0
22
+ MAJOR, MINOR, PATCH = 0, 6, 1
23
23
 
24
24
  module_function
25
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.0
4
+ version: 0.6.1
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-06-16 00:00:00.000000000 Z
11
+ date: 2015-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake