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 +8 -8
- data/CHANGELOG.mkd +16 -0
- data/lib/r10k/git/alternates.rb +1 -1
- data/lib/r10k/version.rb +1 -1
- data/spec/unit/git/alternates_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Y2NmNmU5ZWE0MDlhNWRlODU2ODc3ZDdkZDRjZmE0ZTc4YWIxOTFhZg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTY0YTE3NWM5NTBjMmQ1YzQ4Njg4NzQ3YTVkOGYxZDFjYzFjYzcxYw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTU5YTUwNGYwZmZlOTFmOGMzNjg1NzFmM2MwYTc5NWQzYTQ5Njg4ODlhZWRj
|
10
|
+
ZTMxYWViNjE4ZmI3MjA2MjEyZmJmZmE5ZGU4ZWQyNTgwNTEyYmI4M2JlMmMz
|
11
|
+
NzRhNzlkZThhNThjOWQ4YzQyZGMzNjdhMTcyMTY5NmQ5MzcxYjQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
|
data/lib/r10k/git/alternates.rb
CHANGED
@@ -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
|
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
@@ -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.
|
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.
|
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-
|
11
|
+
date: 2014-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored
|