r10k 1.3.1 → 1.3.2

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZGE0OGNlNWExOWY4OWQ4NjE2NjM1MjQ5MDYzYjc2MjMxN2JkYzQwYw==
4
+ Y2NmNmU5ZWE0MDlhNWRlODU2ODc3ZDdkZDRjZmE0ZTc4YWIxOTFhZg==
5
5
  data.tar.gz: !binary |-
6
- MDg5MWRkNTVlODMyNzlmNzI1Zjk1NzhmOWYwMzc1YWY4NjA1YTJiOA==
6
+ NTY0YTE3NWM5NTBjMmQ1YzQ4Njg4NzQ3YTVkOGYxZDFjYzFjYzcxYw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTkxMjk0Y2I1NDVhMDI4NGUwN2EwMjc2NTc2ZTg0YjYzMDlkNDE1ZGUxODk3
10
- OGEwY2FlZGU4ZGI3YmU2YzE3N2U4YTc5NjAyZmIzMTU4NWJhZGY0M2QzNmVj
11
- NTA4MGQyNWJiMWQ3MjhhZjE1MmZkMDExOGQ3NmRjM2Y4MjE0ZDY=
9
+ OTU5YTUwNGYwZmZlOTFmOGMzNjg1NzFmM2MwYTc5NWQzYTQ5Njg4ODlhZWRj
10
+ ZTMxYWViNjE4ZmI3MjA2MjEyZmJmZmE5ZGU4ZWQyNTgwNTEyYmI4M2JlMmMz
11
+ NzRhNzlkZThhNThjOWQ4YzQyZGMzNjdhMTcyMTY5NmQ5MzcxYjQ=
12
12
  data.tar.gz: !binary |-
13
- ZDNmNmE2NTY1YTVkYjY2YWMzMGMzMDIwOTQ2MGQ4YjQ1NmExODdjNjE0NzI2
14
- YjE4NGZlYTUwZWRiM2ZlZWJjMDIyZTAyOTgyYjhhZTYzZTgxMTA4Y2JjZTkz
15
- YWI3ZDI3MzViMzY1Yjc1OWRjNjMwYjY3ZDhmZjE3OGY3NWU0YWI=
13
+ NmQxMzE5ZDZhYzgxYTQzNzQzNTRlYWUyODQ3ZGE5MTNiMDU4MzFjMjQ1YTQ1
14
+ MDcwMmJlODRhZmEzZDNkODIxOTc0NmZiNzgwMmRjNDVlNzRjY2VjMmNhYjAw
15
+ ZDcwYjZlNzBiNjVjNjFmZWMyYWIwNjkzNDMwMGNlMWMwMjdhMjU=
data/CHANGELOG.mkd CHANGED
@@ -1,6 +1,13 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 1.3.2
5
+ -----
6
+
7
+ 2014/07/27
8
+
9
+ This bugfix release incorporates all fixes added in 1.2.3.
10
+
4
11
  1.3.1
5
12
  -----
6
13
 
@@ -85,6 +92,15 @@ long run r10k will add a plugin system for loading additional code from
85
92
  Rubygems and other sources, so r10k will be extensible without requiring
86
93
  modifications to the source.
87
94
 
95
+ 1.2.3
96
+ -----
97
+
98
+ 2014/07/27
99
+
100
+ ### User Notes
101
+
102
+ (GH-173) Fixed a bug with Ruby 1.8.7 with Pathname objects.
103
+
88
104
  1.2.2
89
105
  -----
90
106
 
@@ -30,7 +30,7 @@ class R10K::Git::Alternates
30
30
 
31
31
  def write(entries)
32
32
  if ! @file.parent.directory?
33
- raise R10K::Git::GitError, "Cannot write #{@file.to_path}; parent directory does not exist"
33
+ raise R10K::Git::GitError, "Cannot write #{@file}; parent directory does not exist"
34
34
  end
35
35
  @file.open("w") do |fh|
36
36
  entries.each do |entry|
data/lib/r10k/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module R10K
2
- VERSION = '1.3.1'
2
+ VERSION = '1.3.2'
3
3
  end
@@ -6,7 +6,7 @@ describe R10K::Git::Alternates do
6
6
  subject { described_class.new("/some/nonexistent/path/.git") }
7
7
 
8
8
  it "interacts with the alternates file in the given git repository" do
9
- expect(subject.file.to_path).to eq("/some/nonexistent/path/.git/objects/info/alternates")
9
+ expect(subject.file.to_s).to eq("/some/nonexistent/path/.git/objects/info/alternates")
10
10
  end
11
11
 
12
12
  describe "reading alternate object entries" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r10k
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-16 00:00:00.000000000 Z
11
+ date: 2014-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored