git-multirepo 1.0.0.beta61 → 1.0.0.beta62

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33194bbc09a72081c0220b7dd3ed6cadfb593fb8
4
- data.tar.gz: f027c7d2b2563c2d257c82c9b345cbe7067a9197
3
+ metadata.gz: d57d286739d2806d7563998045a381d73cb9b13b
4
+ data.tar.gz: '028741dbb53b6ad6058115d1d5d215843c3a5644'
5
5
  SHA512:
6
- metadata.gz: 99f09d56409dff097347552ee4263676fcb86a1b797d254efb2b0464766a9ca675b51a4fc031ef87cd017d11b3b89980385b186d7e4f2a7ae6e669cf0c284f0e
7
- data.tar.gz: 9d1d731d5ea795cb7528ecea2cf39b7bcf805b4c631230733614daae42299c5d1bdc55bdcb96910feef8c7bde58abd757b78e9d92b4f3a92689a34f70b23b2de
6
+ metadata.gz: 64220e58063ed79cb69d19aab32f8d25acce85640f0ff9c8c797d9508d7e38ce7f5de4c2338cd41fcff4e7db11fa64cddddf956edc69f54e587e9fb4533b5a45
7
+ data.tar.gz: 5f67852514d3c79d6560df55cd2499624e0c05db6c939876d9900e4d9c3759a024fd7b274358550ca21d87691a40b063d240d15d73671f015a77d1d3cf9d0eb5
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  To install betas run `gem install git-multirepo --pre`
4
4
 
5
+ ## 1.0.0.beta62
6
+
7
+ - **Bug Fix:** Fix post-first-init commit
8
+
5
9
  ## 1.0.0.beta61
6
10
 
7
11
  - **Bug Fix:** Fix crasher in file permissions checking code
@@ -23,14 +23,15 @@ module MultiRepo
23
23
  end
24
24
 
25
25
  def ensure_tool_not_outdated
26
- base_message = "Can't update tracking files with an outdated version of git-multirepo"
27
-
28
- fail MultiRepoException, base_message if !@meta_file.exists?
26
+ return if !@meta_file.exists?
29
27
 
28
+ base_message = "Can't update tracking files with an outdated version of git-multirepo."
30
29
  current_version = MultiRepo::VERSION
31
30
  meta_version = @meta_file.load.version
31
+ puts "CURRENT: " + current_version
32
+ puts "META: " + meta_version
32
33
  outdated_tool = !VersionComparer.is_latest(current: current_version, last: meta_version)
33
- message = base_message + "\n Current version is #{current_version} and repo is tracked by #{meta_version}"
34
+ message = base_message + " Current version is #{current_version} and repo is tracked by #{meta_version}"
34
35
 
35
36
  fail MultiRepoException, message if outdated_tool
36
37
  end
@@ -1,5 +1,5 @@
1
1
  module MultiRepo
2
2
  NAME = "git-multirepo"
3
- VERSION = "1.0.0.beta61"
3
+ VERSION = "1.0.0.beta62"
4
4
  DESCRIPTION = "Track multiple Git repositories side-by-side."
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-multirepo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta61
4
+ version: 1.0.0.beta62
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michaël Fortin