falkorlib 0.2.12 → 0.2.13

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: b30dddfa9585e963002ffde18c2233028282f0c3
4
- data.tar.gz: e19f0ce91512743338d9423c81093ddda90d702f
3
+ metadata.gz: 58e1c322a7dc6991005be748979d8b9318a88cbb
4
+ data.tar.gz: 4db3c7d05343049b6bd7b5509edd8c067ffbe217
5
5
  SHA512:
6
- metadata.gz: 89bb6c7980ddd8fa72c8c561d2bd8ecf7ffbcc97f34a7bc9373ca5d8e4c23b406232d57fdec45c70e37c6ecd7dcc18dc6267e453abc2e284a76580d684f9b956
7
- data.tar.gz: ea1babfa0cb0a798f888aaae50bb3d95df1cdf87bfa15c99cc3fcee2087cbecbf3aa4c3e79e62708fba2f31fe4247e4776982b0fa59821ba745215cc3e350976
6
+ metadata.gz: e6f851323198df65081f7a182f16e7891bb58d602af2ceca027608e80dbebb398017d0c3f2b2cb995c0ae720075567ee53a2927a5a62a7640433c227a62ba35e
7
+ data.tar.gz: efa5a529d2b3a0aa56dfe81f12580f4a1ea64c26853b7361d1511aa537f35a630c95a6a8eee215b4d38c011d88798487ff1156aa3e231926724b391dc7e7b8e4
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- falkorlib (0.2.12)
4
+ falkorlib (0.2.13)
5
5
  awesome_print (~> 1.2)
6
6
  configatron (~> 3.2)
7
7
  git_remote_branch (~> 0)
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  ################################################################################
3
3
  # git.rake - Special tasks for the management of Git operations
4
- # Time-stamp: <Lun 2014-08-18 21:22 svarrette>
4
+ # Time-stamp: <Lun 2014-08-18 22:46 svarrette>
5
5
  #
6
6
  # Copyright (c) 2014 Sebastien Varrette <Sebastien.Varrette@uni.lu>
7
7
  # http://varrette.gforge.uni.lu
@@ -23,7 +23,7 @@ namespace :git do
23
23
  ########### git:fetch ###########
24
24
  #desc "Fetch the latest changes on remotes"
25
25
  task :fetch do |t|
26
- info t.comment
26
+ info "Fetch the latest changes on remotes" # t.comment
27
27
  FalkorLib::Git.fetch()
28
28
  end # task fetch
29
29
 
@@ -81,7 +81,7 @@ namespace :git do
81
81
  ########### git:submodules:update ###########
82
82
  #desc "Update the git submodules from '#{git_root_dir}'"
83
83
  task :update do |t|
84
- info t.comment
84
+ info "Update the git submodules from '#{git_root_dir}'" # t.comment
85
85
  FalkorLib::Git.submodule_update( git_root_dir )
86
86
  end
87
87
 
@@ -1,6 +1,6 @@
1
1
  ################################################################################
2
2
  # gitflow.rake - Special tasks for the management of Git [Flow] operations
3
- # Time-stamp: <Lun 2014-08-18 21:18 svarrette>
3
+ # Time-stamp: <Mar 2014-08-19 10:20 svarrette>
4
4
  #
5
5
  # Copyright (c) 2014 Sebastien Varrette <Sebastien.Varrette@uni.lu>
6
6
  # http://varrette.gforge.uni.lu
@@ -81,7 +81,7 @@ namespace :version do
81
81
  include FalkorLib::Versioning
82
82
  version = get_version
83
83
  #major, minor, patch = bump(version, :major), bumpversion, :minor), bump(version, :patch)
84
- info t.comment
84
+ info "Get versioning information" # t.comment
85
85
  puts "Current version: " + bold(version)
86
86
  FalkorLib.config[:versioning][:levels].reverse.each do |level|
87
87
  puts "- next #{level} version: " + bump(version, level.to_sym)
@@ -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, 2, 12
22
+ MAJOR, MINOR, PATCH = 0, 2, 13
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.2.12
4
+ version: 0.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastien Varrette
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-18 00:00:00.000000000 Z
11
+ date: 2014-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake