jekyll-git_metadata 0.1.2 → 0.2.0
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/.travis.yml +2 -1
- data/lib/jekyll/git_metadata/generator.rb +38 -4
- data/lib/jekyll/git_metadata/version.rb +1 -1
- data/test/helper.rb +8 -4
- data/test/test_git_metadata.rb +69 -22
- data/test/test_repo/_config.yml +5 -0
- data/test/test_repo/_gizmos/yoyo.md +9 -0
- data/test/test_repo/dot_git/COMMIT_EDITMSG +1 -14
- data/test/test_repo/dot_git/MERGE_RR +0 -0
- data/test/test_repo/dot_git/ORIG_HEAD +1 -0
- data/test/test_repo/dot_git/index +0 -0
- data/test/test_repo/dot_git/logs/HEAD +3 -0
- data/test/test_repo/dot_git/logs/refs/heads/master +2 -0
- data/test/test_repo/dot_git/objects/0a/842bc255214909543fb198145783107e735907 +0 -0
- data/test/test_repo/dot_git/objects/0b/6d4b0cffe0117537f4ac31c918588c394778ef +0 -0
- data/test/test_repo/dot_git/objects/13/30fa92b3c8d94ee3ebb645b04154e735c04cf1 +0 -0
- data/test/test_repo/dot_git/objects/1a/24ab60234bd846f0f1532f914d66ea986fadbb +0 -0
- data/test/test_repo/dot_git/objects/32/fff15665e830f9bdd82ea46a906bd3cf1122b0 +1 -0
- data/test/test_repo/dot_git/objects/3d/32f2f8ec3470e6a88ad1f9096e539cec42a47a +0 -0
- data/test/test_repo/dot_git/objects/59/bc060e8c1fbe31c985e00c6cc2fef3b46c0c62 +0 -0
- data/test/test_repo/dot_git/objects/70/343eb1287191b30371400048167253a883d6ca +0 -0
- data/test/test_repo/dot_git/objects/b8/ffd38affdd1cc22ee4cb830cbe5c398b4e3df1 +2 -0
- data/test/test_repo/dot_git/objects/e7/76acafd9b27ddcdd8e8a2c973b1fa1ccd690ab +3 -0
- data/test/test_repo/dot_git/refs/heads/master +1 -1
- metadata +28 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b813696c94afeaf1e861955b9802afd3cf6eb347
|
4
|
+
data.tar.gz: 82358ca6380277c0342e86e3093a055c106b9548
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1258b6c80cc76d95cc47d37a887d8f8b56f170a4880aad835c2d4cd6142f47ef36a0e128989bcda3713760ea64d7fade3d456c22c3f9eb9da305643ef63aa67c
|
7
|
+
data.tar.gz: 4ba19e3fad9f65a3af60eaed845ad56e6d5e4ad35218fbf6c140bf481d5b70f5255bb2abb795db6858bf96f48d79d62b4d7f7632c6e507acff67bf6c39fdfbd8
|
data/.travis.yml
CHANGED
@@ -10,23 +10,51 @@ module Jekyll
|
|
10
10
|
raise "Git is not installed" unless git_installed?
|
11
11
|
|
12
12
|
Dir.chdir(site.source) do
|
13
|
-
|
14
|
-
|
13
|
+
data = load_git_metadata(site)
|
14
|
+
site.config['git'] = data['site_data']
|
15
|
+
jekyll_items(site).each do |page|
|
15
16
|
if page.is_a?(Jekyll::Page)
|
16
17
|
path = page.path
|
17
18
|
else
|
18
19
|
path = page.relative_path
|
19
20
|
end
|
20
|
-
page.data['git'] =
|
21
|
+
page.data['git'] = data['pages_data'][path]
|
21
22
|
end
|
22
23
|
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def load_git_metadata(site)
|
27
|
+
|
28
|
+
current_sha = %x{ git rev-parse HEAD }.strip
|
29
|
+
|
30
|
+
cache_dir = site.source + '/.git-metadata'
|
31
|
+
FileUtils.mkdir_p(cache_dir) unless File.directory?(cache_dir)
|
32
|
+
cache_file = cache_dir + "/#{current_sha}.json"
|
23
33
|
|
34
|
+
if File.exist?(cache_file)
|
35
|
+
return JSON.parse(IO.read(cache_file))
|
36
|
+
end
|
37
|
+
|
38
|
+
pages_data = {}
|
39
|
+
jekyll_items(site).each do |page|
|
40
|
+
if page.is_a?(Jekyll::Page)
|
41
|
+
path = page.path
|
42
|
+
else
|
43
|
+
path = page.relative_path
|
44
|
+
end
|
45
|
+
pages_data[path] = page_data(path)
|
46
|
+
end
|
47
|
+
data = { 'site_data' => site_data, 'pages_data' => pages_data }
|
48
|
+
|
49
|
+
File.open(cache_file, 'w') { |f| f.write(data.to_json) }
|
50
|
+
|
51
|
+
data
|
24
52
|
end
|
25
53
|
|
26
54
|
def site_data
|
27
55
|
{
|
28
56
|
'project_name' => project_name,
|
29
|
-
'files_count' => files_count
|
57
|
+
'files_count' => files_count,
|
30
58
|
}.merge!(page_data)
|
31
59
|
end
|
32
60
|
|
@@ -105,6 +133,12 @@ module Jekyll
|
|
105
133
|
null = RbConfig::CONFIG['host_os'] =~ /msdos|mswin|djgpp|mingw/ ? 'NUL' : '/dev/null'
|
106
134
|
system "git --version >>#{null} 2>&1"
|
107
135
|
end
|
136
|
+
|
137
|
+
private
|
138
|
+
|
139
|
+
def jekyll_items(site)
|
140
|
+
site.pages + site.collections.values.map(&:docs).flatten
|
141
|
+
end
|
108
142
|
end
|
109
143
|
end
|
110
144
|
end
|
data/test/helper.rb
CHANGED
@@ -5,11 +5,15 @@ require 'mocha/mini_test'
|
|
5
5
|
require 'jekyll'
|
6
6
|
require 'jekyll-git_metadata'
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
end
|
8
|
+
def jekyll_test_repo_path
|
9
|
+
File.join(File.dirname(__FILE__), 'test_repo')
|
10
|
+
end
|
12
11
|
|
12
|
+
def remove_cache_dir
|
13
|
+
FileUtils.rm_rf(File.join(jekyll_test_repo_path, '.git-metadata'))
|
14
|
+
end
|
15
|
+
|
16
|
+
class Minitest::Test
|
13
17
|
def dot_git_path
|
14
18
|
File.join(jekyll_test_repo_path, 'dot_git')
|
15
19
|
end
|
data/test/test_git_metadata.rb
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
require 'helper'
|
2
2
|
|
3
|
+
Minitest.after_run do
|
4
|
+
remove_cache_dir
|
5
|
+
end
|
6
|
+
|
3
7
|
class Jekyll::GitMetadataTest < Minitest::Test
|
4
8
|
context 'GitMetadata' do
|
5
9
|
|
@@ -29,19 +33,20 @@ class Jekyll::GitMetadataTest < Minitest::Test
|
|
29
33
|
end
|
30
34
|
|
31
35
|
should 'have correct files count' do
|
32
|
-
assert_equal
|
36
|
+
assert_equal 14, @site_data['files_count']
|
33
37
|
end
|
34
38
|
|
35
39
|
should 'have correct totals count' do
|
36
|
-
assert_equal
|
37
|
-
assert_equal
|
40
|
+
assert_equal 7, @site_data['total_commits']
|
41
|
+
assert_equal 688, @site_data['total_additions']
|
38
42
|
assert_equal 11, @site_data['total_subtractions']
|
39
43
|
end
|
40
44
|
|
41
45
|
should 'have correct authors data' do
|
42
|
-
assert_equal
|
46
|
+
assert_equal 3, @site_data['authors'].count
|
43
47
|
assert @site_data['authors'].include?({"commits"=>5, "name"=>"Ivan Tse", "email"=>"ivan.tse1@gmail.com"})
|
44
48
|
assert @site_data['authors'].include?({"commits"=>1, "name"=>"LeBron James", "email"=>"lbj@example.com"})
|
49
|
+
assert @site_data['authors'].include?({"commits"=>1, "name"=>"Mark Morga", "email"=>"mmorga@rackspace.com"})
|
45
50
|
end
|
46
51
|
|
47
52
|
should 'have correct first commit data' do
|
@@ -57,16 +62,15 @@ class Jekyll::GitMetadataTest < Minitest::Test
|
|
57
62
|
end
|
58
63
|
|
59
64
|
should 'have correct last commit data' do
|
60
|
-
assert_equal '
|
61
|
-
assert_equal '
|
62
|
-
assert_equal '
|
63
|
-
assert_equal '
|
64
|
-
assert_equal '
|
65
|
-
assert_equal '
|
66
|
-
assert_equal '
|
67
|
-
assert_equal '
|
68
|
-
assert_equal
|
69
|
-
assert_equal ["_posts/2014-07-14-welcome-to-jekyll.markdown", "about.md"], @site_data['last_commit']['changed_files']
|
65
|
+
assert_equal 'b8ffd38', @site_data['last_commit']['short_sha']
|
66
|
+
assert_equal 'b8ffd38affdd1cc22ee4cb830cbe5c398b4e3df1', @site_data['last_commit']['long_sha']
|
67
|
+
assert_equal 'Mark Morga', @site_data['last_commit']['author_name']
|
68
|
+
assert_equal 'mmorga@rackspace.com', @site_data['last_commit']['author_email']
|
69
|
+
assert_equal 'Tue Jun 20 11:36:43 2017 -0500', @site_data['last_commit']['author_date']
|
70
|
+
assert_equal 'Mark Morga', @site_data['last_commit']['commit_name']
|
71
|
+
assert_equal 'mmorga@rackspace.com', @site_data['last_commit']['commit_email']
|
72
|
+
assert_equal 'Tue Jun 20 11:36:43 2017 -0500', @site_data['last_commit']['commit_date']
|
73
|
+
assert_equal 'Adding example collection doc for git metadata', @site_data['last_commit']['message']
|
70
74
|
end
|
71
75
|
end
|
72
76
|
|
@@ -101,15 +105,16 @@ class Jekyll::GitMetadataTest < Minitest::Test
|
|
101
105
|
end
|
102
106
|
|
103
107
|
should 'have correct last commit data' do
|
104
|
-
assert_equal '
|
105
|
-
assert_equal '
|
108
|
+
assert_equal '70343eb', @page_data['last_commit']['short_sha']
|
109
|
+
assert_equal '70343eb1287191b30371400048167253a883d6ca', @page_data['last_commit']['long_sha']
|
106
110
|
assert_equal 'Ivan Tse', @page_data['last_commit']['author_name']
|
107
111
|
assert_equal 'ivan.tse1@gmail.com', @page_data['last_commit']['author_email']
|
108
|
-
assert_equal 'Sun Feb 12
|
112
|
+
assert_equal 'Sun Feb 12 02:21:26 2017 -0500', @page_data['last_commit']['author_date']
|
109
113
|
assert_equal 'Ivan Tse', @page_data['last_commit']['commit_name']
|
110
114
|
assert_equal 'ivan.tse1@gmail.com', @page_data['last_commit']['commit_email']
|
111
|
-
assert_equal 'Sun Feb 12
|
115
|
+
assert_equal 'Sun Feb 12 02:21:26 2017 -0500', @page_data['last_commit']['commit_date']
|
112
116
|
assert_equal "This is a long commit message\n\nAs you can tell this commit message will span several lines long because\nI need to test long comit messages too!", @page_data['last_commit']['message']
|
117
|
+
assert_equal ["_posts/2014-07-14-welcome-to-jekyll.markdown", "about.md"], @page_data['last_commit']['changed_files']
|
113
118
|
end
|
114
119
|
end
|
115
120
|
|
@@ -143,15 +148,16 @@ class Jekyll::GitMetadataTest < Minitest::Test
|
|
143
148
|
end
|
144
149
|
|
145
150
|
should 'have correct last commit data' do
|
146
|
-
assert_equal '
|
147
|
-
assert_equal '
|
151
|
+
assert_equal '70343eb', @page_data['last_commit']['short_sha']
|
152
|
+
assert_equal '70343eb1287191b30371400048167253a883d6ca', @page_data['last_commit']['long_sha']
|
148
153
|
assert_equal 'Ivan Tse', @page_data['last_commit']['author_name']
|
149
154
|
assert_equal 'ivan.tse1@gmail.com', @page_data['last_commit']['author_email']
|
150
|
-
assert_equal 'Sun Feb 12
|
155
|
+
assert_equal 'Sun Feb 12 02:21:26 2017 -0500', @page_data['last_commit']['author_date']
|
151
156
|
assert_equal 'Ivan Tse', @page_data['last_commit']['commit_name']
|
152
157
|
assert_equal 'ivan.tse1@gmail.com', @page_data['last_commit']['commit_email']
|
153
|
-
assert_equal 'Sun Feb 12
|
158
|
+
assert_equal 'Sun Feb 12 02:21:26 2017 -0500', @page_data['last_commit']['commit_date']
|
154
159
|
assert_equal "This is a long commit message\n\nAs you can tell this commit message will span several lines long because\nI need to test long comit messages too!", @page_data['last_commit']['message']
|
160
|
+
assert_equal ["_posts/2014-07-14-welcome-to-jekyll.markdown", "about.md"], @page_data['last_commit']['changed_files']
|
155
161
|
end
|
156
162
|
end
|
157
163
|
|
@@ -176,5 +182,46 @@ class Jekyll::GitMetadataTest < Minitest::Test
|
|
176
182
|
end
|
177
183
|
end
|
178
184
|
|
185
|
+
context 'collection doc data' do
|
186
|
+
setup do
|
187
|
+
@gizmo_page = @site.collections['gizmos'].docs.select{|p| p.relative_path == '_gizmos/yoyo.md'}.first
|
188
|
+
@page_data = @gizmo_page.data['git']
|
189
|
+
end
|
190
|
+
|
191
|
+
should 'have correct totals count' do
|
192
|
+
assert_equal 1, @page_data['total_commits']
|
193
|
+
assert_equal 9, @page_data['total_additions']
|
194
|
+
assert_equal 0, @page_data['total_subtractions']
|
195
|
+
end
|
196
|
+
|
197
|
+
should 'have correct authors data' do
|
198
|
+
assert_equal 1, @page_data['authors'].count
|
199
|
+
assert @page_data['authors'].include?({"commits"=>1, "name"=>"Mark Morga", "email"=>"mmorga@rackspace.com"})
|
200
|
+
end
|
201
|
+
|
202
|
+
should 'have correct first commit data' do
|
203
|
+
assert_equal 'b8ffd38', @page_data['first_commit']['short_sha']
|
204
|
+
assert_equal 'b8ffd38affdd1cc22ee4cb830cbe5c398b4e3df1', @page_data['first_commit']['long_sha']
|
205
|
+
assert_equal 'Mark Morga', @page_data['first_commit']['author_name']
|
206
|
+
assert_equal 'mmorga@rackspace.com', @page_data['first_commit']['author_email']
|
207
|
+
assert_equal 'Tue Jun 20 11:36:43 2017 -0500', @page_data['first_commit']['author_date']
|
208
|
+
assert_equal 'Mark Morga', @page_data['first_commit']['commit_name']
|
209
|
+
assert_equal 'mmorga@rackspace.com', @page_data['first_commit']['commit_email']
|
210
|
+
assert_equal 'Tue Jun 20 11:36:43 2017 -0500', @page_data['first_commit']['commit_date']
|
211
|
+
assert_equal 'Adding example collection doc for git metadata', @page_data['first_commit']['message']
|
212
|
+
end
|
213
|
+
|
214
|
+
should 'have correct last commit data' do
|
215
|
+
assert_equal 'b8ffd38', @page_data['last_commit']['short_sha']
|
216
|
+
assert_equal 'b8ffd38affdd1cc22ee4cb830cbe5c398b4e3df1', @page_data['last_commit']['long_sha']
|
217
|
+
assert_equal 'Mark Morga', @page_data['last_commit']['author_name']
|
218
|
+
assert_equal 'mmorga@rackspace.com', @page_data['last_commit']['author_email']
|
219
|
+
assert_equal 'Tue Jun 20 11:36:43 2017 -0500', @page_data['last_commit']['author_date']
|
220
|
+
assert_equal 'Mark Morga', @page_data['last_commit']['commit_name']
|
221
|
+
assert_equal 'mmorga@rackspace.com', @page_data['last_commit']['commit_email']
|
222
|
+
assert_equal 'Tue Jun 20 11:36:43 2017 -0500', @page_data['last_commit']['commit_date']
|
223
|
+
assert_equal 'Adding example collection doc for git metadata', @page_data['last_commit']['message']
|
224
|
+
end
|
225
|
+
end
|
179
226
|
end
|
180
227
|
end
|
data/test/test_repo/_config.yml
CHANGED
@@ -1,14 +1 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
As you can tell this commit message will span several lines long because
|
4
|
-
I need to test long comit messages too!
|
5
|
-
# Please enter the commit message for your changes. Lines starting
|
6
|
-
# with '#' will be ignored, and an empty message aborts the commit.
|
7
|
-
# On branch master
|
8
|
-
# Changes to be committed:
|
9
|
-
# modified: _posts/2014-07-14-welcome-to-jekyll.markdown
|
10
|
-
# modified: about.md
|
11
|
-
#
|
12
|
-
# Untracked files:
|
13
|
-
# dot_git/
|
14
|
-
#
|
1
|
+
Adding example collection doc for git metadata
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
25d62f6feeb7190483f81564f4a76c1ec33d5118
|
Binary file
|
@@ -4,3 +4,6 @@ da077394cb4d5bf7ffac527dbfc652ec0592b423 9e00340e45d33e52bb16100f1b613a36f82f9c5
|
|
4
4
|
9e00340e45d33e52bb16100f1b613a36f82f9c57 8365a44c640d5c7cafc8788607a274dfd91b89bb Ivan Tse <ivan.tse1@gmail.com> 1405318203 -0400 commit: Edit first post
|
5
5
|
8365a44c640d5c7cafc8788607a274dfd91b89bb 25d62f6feeb7190483f81564f4a76c1ec33d5118 Ivan Tse <ivan.tse1@gmail.com> 1405318351 -0400 commit: Be more friendly
|
6
6
|
25d62f6feeb7190483f81564f4a76c1ec33d5118 2410dac67d5dc5f47a6d790edfed4f65acd9477b Ivan Tse <ivan.tse1@gmail.com> 1486879251 -0500 commit: This is a long commit message
|
7
|
+
25d62f6feeb7190483f81564f4a76c1ec33d5118 25d62f6feeb7190483f81564f4a76c1ec33d5118 Ivan Tse <ivan.tse1@gmail.com> 1486884057 -0500 reset: moving to HEAD
|
8
|
+
25d62f6feeb7190483f81564f4a76c1ec33d5118 70343eb1287191b30371400048167253a883d6ca Ivan Tse <ivan.tse1@gmail.com> 1486884086 -0500 commit: This is a long commit message
|
9
|
+
70343eb1287191b30371400048167253a883d6ca b8ffd38affdd1cc22ee4cb830cbe5c398b4e3df1 Mark Morga <mmorga@rackspace.com> 1497976603 -0500 commit: Adding example collection doc for git metadata
|
@@ -4,3 +4,5 @@ da077394cb4d5bf7ffac527dbfc652ec0592b423 9e00340e45d33e52bb16100f1b613a36f82f9c5
|
|
4
4
|
9e00340e45d33e52bb16100f1b613a36f82f9c57 8365a44c640d5c7cafc8788607a274dfd91b89bb Ivan Tse <ivan.tse1@gmail.com> 1405318203 -0400 commit: Edit first post
|
5
5
|
8365a44c640d5c7cafc8788607a274dfd91b89bb 25d62f6feeb7190483f81564f4a76c1ec33d5118 Ivan Tse <ivan.tse1@gmail.com> 1405318351 -0400 commit: Be more friendly
|
6
6
|
25d62f6feeb7190483f81564f4a76c1ec33d5118 2410dac67d5dc5f47a6d790edfed4f65acd9477b Ivan Tse <ivan.tse1@gmail.com> 1486879251 -0500 commit: This is a long commit message
|
7
|
+
25d62f6feeb7190483f81564f4a76c1ec33d5118 70343eb1287191b30371400048167253a883d6ca Ivan Tse <ivan.tse1@gmail.com> 1486884086 -0500 commit: This is a long commit message
|
8
|
+
70343eb1287191b30371400048167253a883d6ca b8ffd38affdd1cc22ee4cb830cbe5c398b4e3df1 Mark Morga <mmorga@rackspace.com> 1497976603 -0500 commit: Adding example collection doc for git metadata
|
@@ -0,0 +1 @@
|
|
1
|
+
x5�1�0DQj�b$Z���9h({IVZg�x]8�!M��͢3n���{�$tm6����� MxiW��Ɲ��n�+W|�;W��G��ht���?
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
b8ffd38affdd1cc22ee4cb830cbe5c398b4e3df1
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-git_metadata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Tse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02
|
11
|
+
date: 2017-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -102,6 +102,7 @@ files:
|
|
102
102
|
- test/test_git_metadata.rb
|
103
103
|
- test/test_repo/.gitignore
|
104
104
|
- test/test_repo/_config.yml
|
105
|
+
- test/test_repo/_gizmos/yoyo.md
|
105
106
|
- test/test_repo/_includes/footer.html
|
106
107
|
- test/test_repo/_includes/head.html
|
107
108
|
- test/test_repo/_includes/header.html
|
@@ -113,6 +114,8 @@ files:
|
|
113
114
|
- test/test_repo/css/main.css
|
114
115
|
- test/test_repo/dot_git/COMMIT_EDITMSG
|
115
116
|
- test/test_repo/dot_git/HEAD
|
117
|
+
- test/test_repo/dot_git/MERGE_RR
|
118
|
+
- test/test_repo/dot_git/ORIG_HEAD
|
116
119
|
- test/test_repo/dot_git/config
|
117
120
|
- test/test_repo/dot_git/description
|
118
121
|
- test/test_repo/dot_git/hooks/applypatch-msg.sample
|
@@ -129,17 +132,25 @@ files:
|
|
129
132
|
- test/test_repo/dot_git/logs/HEAD
|
130
133
|
- test/test_repo/dot_git/logs/refs/heads/master
|
131
134
|
- test/test_repo/dot_git/objects/00/26c4c5df4d5148a07b9fbd790620f4e11d0802
|
135
|
+
- test/test_repo/dot_git/objects/0a/842bc255214909543fb198145783107e735907
|
136
|
+
- test/test_repo/dot_git/objects/0b/6d4b0cffe0117537f4ac31c918588c394778ef
|
132
137
|
- test/test_repo/dot_git/objects/0e/a9d20342677512902dde3175a73e1dd1059e67
|
138
|
+
- test/test_repo/dot_git/objects/13/30fa92b3c8d94ee3ebb645b04154e735c04cf1
|
139
|
+
- test/test_repo/dot_git/objects/1a/24ab60234bd846f0f1532f914d66ea986fadbb
|
133
140
|
- test/test_repo/dot_git/objects/25/d62f6feeb7190483f81564f4a76c1ec33d5118
|
134
141
|
- test/test_repo/dot_git/objects/32/3a65e20f0feb846438bbda1a0396ea2db7616e
|
142
|
+
- test/test_repo/dot_git/objects/32/fff15665e830f9bdd82ea46a906bd3cf1122b0
|
143
|
+
- test/test_repo/dot_git/objects/3d/32f2f8ec3470e6a88ad1f9096e539cec42a47a
|
135
144
|
- test/test_repo/dot_git/objects/3e/d64bb62b98b0827096cda5da5a728ec1bf5e3e
|
136
145
|
- test/test_repo/dot_git/objects/48/d97759a460f607e077eea99a2df7b3cd5a2601
|
137
146
|
- test/test_repo/dot_git/objects/4c/2dd956115a971f5376a998bc4b243022c8881e
|
138
147
|
- test/test_repo/dot_git/objects/4d/1b13c2e1ef1c1a944aae52994682da833a5bef
|
139
148
|
- test/test_repo/dot_git/objects/4d/7f8a4c1a1bac8d553ba169e18882a7f51235bd
|
140
149
|
- test/test_repo/dot_git/objects/59/821b143fbc62850d08e3f70c70d02af08df684
|
150
|
+
- test/test_repo/dot_git/objects/59/bc060e8c1fbe31c985e00c6cc2fef3b46c0c62
|
141
151
|
- test/test_repo/dot_git/objects/60/9711c27d50b5ab6ecc7d8fd485082481f9fc4a
|
142
152
|
- test/test_repo/dot_git/objects/62/61f5911f204a827c313081c33e2522f0dd457c
|
153
|
+
- test/test_repo/dot_git/objects/70/343eb1287191b30371400048167253a883d6ca
|
143
154
|
- test/test_repo/dot_git/objects/78/845656f899d0bfd86d2806b85b0c54adddd3c8
|
144
155
|
- test/test_repo/dot_git/objects/7f/9eb0e6044998d71653c06fdc6e359dfbfc4211
|
145
156
|
- test/test_repo/dot_git/objects/83/65a44c640d5c7cafc8788607a274dfd91b89bb
|
@@ -152,6 +163,7 @@ files:
|
|
152
163
|
- test/test_repo/dot_git/objects/a9/f5097c614e0d4be7f900c04d782d3b1d675ee2
|
153
164
|
- test/test_repo/dot_git/objects/ae/45638b71046b28d46a764d8a2f7780fec58c01
|
154
165
|
- test/test_repo/dot_git/objects/af/415865cd1f1c0a5963a5d45b1335856e23dae8
|
166
|
+
- test/test_repo/dot_git/objects/b8/ffd38affdd1cc22ee4cb830cbe5c398b4e3df1
|
155
167
|
- test/test_repo/dot_git/objects/ba/a938862bbe45533863069649b40fdebf59e81c
|
156
168
|
- test/test_repo/dot_git/objects/c0/8f9add7a1d48045bec46451dfdbb5b5ebf8dc0
|
157
169
|
- test/test_repo/dot_git/objects/c8/f101653f2c1de3611232fc4c940246b06779cd
|
@@ -159,6 +171,7 @@ files:
|
|
159
171
|
- test/test_repo/dot_git/objects/e1/ec08bcf36967f7be9ec6df51c862cc86305f4f
|
160
172
|
- test/test_repo/dot_git/objects/e3/c2be348eb0873f7ac3f500ae6daaa93ebd7959
|
161
173
|
- test/test_repo/dot_git/objects/e5/e6f26a0481e83434feb2de4ef29843c8a1b8b2
|
174
|
+
- test/test_repo/dot_git/objects/e7/76acafd9b27ddcdd8e8a2c973b1fa1ccd690ab
|
162
175
|
- test/test_repo/dot_git/objects/ff/74852f93c8e337b7ae3088c31cfe8673def356
|
163
176
|
- test/test_repo/dot_git/refs/heads/master
|
164
177
|
- test/test_repo/feed.xml
|
@@ -192,6 +205,7 @@ test_files:
|
|
192
205
|
- test/test_git_metadata.rb
|
193
206
|
- test/test_repo/.gitignore
|
194
207
|
- test/test_repo/_config.yml
|
208
|
+
- test/test_repo/_gizmos/yoyo.md
|
195
209
|
- test/test_repo/_includes/footer.html
|
196
210
|
- test/test_repo/_includes/head.html
|
197
211
|
- test/test_repo/_includes/header.html
|
@@ -203,6 +217,8 @@ test_files:
|
|
203
217
|
- test/test_repo/css/main.css
|
204
218
|
- test/test_repo/dot_git/COMMIT_EDITMSG
|
205
219
|
- test/test_repo/dot_git/HEAD
|
220
|
+
- test/test_repo/dot_git/MERGE_RR
|
221
|
+
- test/test_repo/dot_git/ORIG_HEAD
|
206
222
|
- test/test_repo/dot_git/config
|
207
223
|
- test/test_repo/dot_git/description
|
208
224
|
- test/test_repo/dot_git/hooks/applypatch-msg.sample
|
@@ -219,17 +235,25 @@ test_files:
|
|
219
235
|
- test/test_repo/dot_git/logs/HEAD
|
220
236
|
- test/test_repo/dot_git/logs/refs/heads/master
|
221
237
|
- test/test_repo/dot_git/objects/00/26c4c5df4d5148a07b9fbd790620f4e11d0802
|
238
|
+
- test/test_repo/dot_git/objects/0a/842bc255214909543fb198145783107e735907
|
239
|
+
- test/test_repo/dot_git/objects/0b/6d4b0cffe0117537f4ac31c918588c394778ef
|
222
240
|
- test/test_repo/dot_git/objects/0e/a9d20342677512902dde3175a73e1dd1059e67
|
241
|
+
- test/test_repo/dot_git/objects/13/30fa92b3c8d94ee3ebb645b04154e735c04cf1
|
242
|
+
- test/test_repo/dot_git/objects/1a/24ab60234bd846f0f1532f914d66ea986fadbb
|
223
243
|
- test/test_repo/dot_git/objects/25/d62f6feeb7190483f81564f4a76c1ec33d5118
|
224
244
|
- test/test_repo/dot_git/objects/32/3a65e20f0feb846438bbda1a0396ea2db7616e
|
245
|
+
- test/test_repo/dot_git/objects/32/fff15665e830f9bdd82ea46a906bd3cf1122b0
|
246
|
+
- test/test_repo/dot_git/objects/3d/32f2f8ec3470e6a88ad1f9096e539cec42a47a
|
225
247
|
- test/test_repo/dot_git/objects/3e/d64bb62b98b0827096cda5da5a728ec1bf5e3e
|
226
248
|
- test/test_repo/dot_git/objects/48/d97759a460f607e077eea99a2df7b3cd5a2601
|
227
249
|
- test/test_repo/dot_git/objects/4c/2dd956115a971f5376a998bc4b243022c8881e
|
228
250
|
- test/test_repo/dot_git/objects/4d/1b13c2e1ef1c1a944aae52994682da833a5bef
|
229
251
|
- test/test_repo/dot_git/objects/4d/7f8a4c1a1bac8d553ba169e18882a7f51235bd
|
230
252
|
- test/test_repo/dot_git/objects/59/821b143fbc62850d08e3f70c70d02af08df684
|
253
|
+
- test/test_repo/dot_git/objects/59/bc060e8c1fbe31c985e00c6cc2fef3b46c0c62
|
231
254
|
- test/test_repo/dot_git/objects/60/9711c27d50b5ab6ecc7d8fd485082481f9fc4a
|
232
255
|
- test/test_repo/dot_git/objects/62/61f5911f204a827c313081c33e2522f0dd457c
|
256
|
+
- test/test_repo/dot_git/objects/70/343eb1287191b30371400048167253a883d6ca
|
233
257
|
- test/test_repo/dot_git/objects/78/845656f899d0bfd86d2806b85b0c54adddd3c8
|
234
258
|
- test/test_repo/dot_git/objects/7f/9eb0e6044998d71653c06fdc6e359dfbfc4211
|
235
259
|
- test/test_repo/dot_git/objects/83/65a44c640d5c7cafc8788607a274dfd91b89bb
|
@@ -242,6 +266,7 @@ test_files:
|
|
242
266
|
- test/test_repo/dot_git/objects/a9/f5097c614e0d4be7f900c04d782d3b1d675ee2
|
243
267
|
- test/test_repo/dot_git/objects/ae/45638b71046b28d46a764d8a2f7780fec58c01
|
244
268
|
- test/test_repo/dot_git/objects/af/415865cd1f1c0a5963a5d45b1335856e23dae8
|
269
|
+
- test/test_repo/dot_git/objects/b8/ffd38affdd1cc22ee4cb830cbe5c398b4e3df1
|
245
270
|
- test/test_repo/dot_git/objects/ba/a938862bbe45533863069649b40fdebf59e81c
|
246
271
|
- test/test_repo/dot_git/objects/c0/8f9add7a1d48045bec46451dfdbb5b5ebf8dc0
|
247
272
|
- test/test_repo/dot_git/objects/c8/f101653f2c1de3611232fc4c940246b06779cd
|
@@ -249,6 +274,7 @@ test_files:
|
|
249
274
|
- test/test_repo/dot_git/objects/e1/ec08bcf36967f7be9ec6df51c862cc86305f4f
|
250
275
|
- test/test_repo/dot_git/objects/e3/c2be348eb0873f7ac3f500ae6daaa93ebd7959
|
251
276
|
- test/test_repo/dot_git/objects/e5/e6f26a0481e83434feb2de4ef29843c8a1b8b2
|
277
|
+
- test/test_repo/dot_git/objects/e7/76acafd9b27ddcdd8e8a2c973b1fa1ccd690ab
|
252
278
|
- test/test_repo/dot_git/objects/ff/74852f93c8e337b7ae3088c31cfe8673def356
|
253
279
|
- test/test_repo/dot_git/refs/heads/master
|
254
280
|
- test/test_repo/feed.xml
|