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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/falkorlib/tasks/git.rake +3 -3
- data/lib/falkorlib/tasks/gitflow.rake +2 -2
- data/lib/falkorlib/version.rb +1 -1
- 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: 58e1c322a7dc6991005be748979d8b9318a88cbb
|
4
|
+
data.tar.gz: 4db3c7d05343049b6bd7b5509edd8c067ffbe217
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6f851323198df65081f7a182f16e7891bb58d602af2ceca027608e80dbebb398017d0c3f2b2cb995c0ae720075567ee53a2927a5a62a7640433c227a62ba35e
|
7
|
+
data.tar.gz: efa5a529d2b3a0aa56dfe81f12580f4a1ea64c26853b7361d1511aa537f35a630c95a6a8eee215b4d38c011d88798487ff1156aa3e231926724b391dc7e7b8e4
|
data/Gemfile.lock
CHANGED
@@ -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
|
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: <
|
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)
|
data/lib/falkorlib/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|