rugged 0.18.0.gh.de28323 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (283) hide show
  1. data/README.md +9 -4
  2. data/Rakefile +1 -1
  3. data/ext/rugged/extconf.rb +10 -0
  4. data/ext/rugged/rugged.c +153 -86
  5. data/ext/rugged/rugged.h +44 -33
  6. data/ext/rugged/rugged_blob.c +288 -60
  7. data/ext/rugged/rugged_branch.c +82 -57
  8. data/ext/rugged/rugged_commit.c +83 -86
  9. data/ext/rugged/rugged_config.c +68 -68
  10. data/ext/rugged/rugged_diff.c +509 -0
  11. data/ext/rugged/rugged_diff_delta.c +94 -0
  12. data/ext/rugged/rugged_diff_hunk.c +100 -0
  13. data/ext/rugged/rugged_diff_line.c +79 -0
  14. data/ext/rugged/rugged_diff_patch.c +169 -0
  15. data/ext/rugged/rugged_index.c +539 -8
  16. data/ext/rugged/rugged_note.c +74 -80
  17. data/ext/rugged/rugged_object.c +63 -8
  18. data/ext/rugged/rugged_reference.c +231 -145
  19. data/ext/rugged/rugged_remote.c +509 -53
  20. data/ext/rugged/rugged_repo.c +572 -236
  21. data/ext/rugged/rugged_revwalk.c +59 -36
  22. data/ext/rugged/rugged_settings.c +7 -9
  23. data/ext/rugged/rugged_signature.c +7 -11
  24. data/ext/rugged/rugged_tag.c +93 -39
  25. data/ext/rugged/rugged_tree.c +321 -58
  26. data/lib/rugged.rb +1 -0
  27. data/lib/rugged/commit.rb +16 -1
  28. data/lib/rugged/console.rb +9 -0
  29. data/lib/rugged/diff.rb +19 -0
  30. data/lib/rugged/diff/delta.rb +54 -0
  31. data/lib/rugged/diff/hunk.rb +23 -0
  32. data/lib/rugged/diff/line.rb +29 -0
  33. data/lib/rugged/diff/patch.rb +28 -0
  34. data/lib/rugged/repository.rb +36 -39
  35. data/lib/rugged/version.rb +1 -1
  36. data/test/blob_test.rb +308 -1
  37. data/test/branch_test.rb +7 -0
  38. data/test/commit_test.rb +7 -10
  39. data/test/coverage/cover.rb +9 -1
  40. data/test/diff_test.rb +777 -0
  41. data/test/fixtures/archive.tar.gz +0 -0
  42. data/test/fixtures/attr/attr0 +1 -0
  43. data/test/fixtures/attr/attr1 +29 -0
  44. data/test/fixtures/attr/attr2 +21 -0
  45. data/test/fixtures/attr/attr3 +4 -0
  46. data/test/fixtures/attr/binfile +1 -0
  47. data/test/fixtures/attr/dir/file +0 -0
  48. data/test/fixtures/attr/file +1 -0
  49. data/test/fixtures/attr/gitattributes +29 -0
  50. data/test/fixtures/attr/gitignore +2 -0
  51. data/test/fixtures/attr/ign +1 -0
  52. data/test/fixtures/attr/macro_bad +1 -0
  53. data/test/fixtures/attr/macro_test +1 -0
  54. data/test/fixtures/attr/root_test1 +1 -0
  55. data/test/fixtures/attr/root_test2 +6 -0
  56. data/test/fixtures/attr/root_test3 +19 -0
  57. data/test/fixtures/attr/root_test4.txt +14 -0
  58. data/test/fixtures/attr/sub/abc +37 -0
  59. data/test/fixtures/attr/sub/dir/file +0 -0
  60. data/test/fixtures/attr/sub/file +1 -0
  61. data/test/fixtures/attr/sub/ign/file +1 -0
  62. data/test/fixtures/attr/sub/ign/sub/file +1 -0
  63. data/test/fixtures/attr/sub/sub/dir +0 -0
  64. data/test/fixtures/attr/sub/sub/file +1 -0
  65. data/test/fixtures/attr/sub/sub/subsub.txt +1 -0
  66. data/test/fixtures/attr/sub/subdir_test1 +2 -0
  67. data/test/fixtures/attr/sub/subdir_test2.txt +1 -0
  68. data/test/fixtures/diff/another.txt +38 -0
  69. data/test/fixtures/diff/readme.txt +36 -0
  70. data/test/fixtures/mergedrepo/conflicts-one.txt +5 -0
  71. data/test/fixtures/mergedrepo/conflicts-two.txt +5 -0
  72. data/test/fixtures/mergedrepo/one.txt +10 -0
  73. data/test/fixtures/mergedrepo/two.txt +12 -0
  74. data/test/fixtures/status/current_file +1 -0
  75. data/test/fixtures/status/ignored_file +1 -0
  76. data/test/fixtures/status/modified_file +2 -0
  77. data/test/fixtures/status/new_file +1 -0
  78. data/test/fixtures/status/staged_changes +2 -0
  79. data/test/fixtures/status/staged_changes_modified_file +3 -0
  80. data/test/fixtures/status/staged_delete_modified_file +1 -0
  81. data/test/fixtures/status/staged_new_file +1 -0
  82. data/test/fixtures/status/staged_new_file_modified_file +2 -0
  83. data/test/fixtures/status/subdir.txt +2 -0
  84. data/test/fixtures/status/subdir/current_file +1 -0
  85. data/test/fixtures/status/subdir/modified_file +2 -0
  86. data/test/fixtures/status/subdir/new_file +1 -0
  87. data/test/fixtures/status//350/277/231 +1 -0
  88. data/test/fixtures/testrepo.git/config +5 -0
  89. data/test/fixtures/testrepo.git/objects/77/71329dfa3002caf8c61a0ceb62a31d09023f37 +0 -0
  90. data/test/fixtures/text_file.md +464 -0
  91. data/test/fixtures/unsymlinked.git/HEAD +1 -0
  92. data/test/fixtures/unsymlinked.git/config +6 -0
  93. data/test/fixtures/unsymlinked.git/description +1 -0
  94. data/test/fixtures/unsymlinked.git/info/exclude +2 -0
  95. data/test/fixtures/unsymlinked.git/objects/08/8b64704e0d6b8bd061dea879418cb5442a3fbf +0 -0
  96. data/test/fixtures/unsymlinked.git/objects/13/a5e939bca25940c069fd2169d993dba328e30b +0 -0
  97. data/test/fixtures/unsymlinked.git/objects/19/bf568e59e3a0b363cafb4106226e62d4a4c41c +0 -0
  98. data/test/fixtures/unsymlinked.git/objects/58/1fadd35b4cf320d102a152f918729011604773 +0 -0
  99. data/test/fixtures/unsymlinked.git/objects/5c/87b6791e8b13da658a14d1ef7e09b5dc3bac8c +0 -0
  100. data/test/fixtures/unsymlinked.git/objects/6f/e5f5398af85fb3de8a6aba0339b6d3bfa26a27 +0 -0
  101. data/test/fixtures/unsymlinked.git/objects/7f/ccd75616ec188b8f1b23d67506a334cc34a49d +0 -0
  102. data/test/fixtures/unsymlinked.git/objects/80/6999882bf91d24241e4077906b9017605eb1f3 +0 -0
  103. data/test/fixtures/unsymlinked.git/objects/83/7d176303c5005505ec1e4a30231c40930c0230 +0 -0
  104. data/test/fixtures/unsymlinked.git/objects/a8/595ccca04f40818ae0155c8f9c77a230e597b6 +2 -0
  105. data/test/fixtures/unsymlinked.git/objects/cf/8f1cf5cce859c438d6cc067284cb5e161206e7 +0 -0
  106. data/test/fixtures/unsymlinked.git/objects/d5/278d05c8607ec420bfee4cf219fbc0eeebfd6a +0 -0
  107. data/test/fixtures/unsymlinked.git/objects/f4/e16fb76536591a41454194058d048d8e4dd2e9 +0 -0
  108. data/test/fixtures/unsymlinked.git/objects/f9/e65619d93fdf2673882e0a261c5e93b1a84006 +0 -0
  109. data/test/fixtures/unsymlinked.git/refs/heads/exe-file +1 -0
  110. data/test/fixtures/unsymlinked.git/refs/heads/master +1 -0
  111. data/test/fixtures/unsymlinked.git/refs/heads/reg-file +1 -0
  112. data/test/index_test.rb +120 -0
  113. data/test/reference_test.rb +38 -3
  114. data/test/remote_test.rb +224 -3
  115. data/test/repo_reset_test.rb +2 -0
  116. data/test/repo_test.rb +147 -10
  117. data/test/test_helper.rb +5 -2
  118. data/vendor/libgit2/include/git2/attr.h +3 -3
  119. data/vendor/libgit2/include/git2/blob.h +11 -17
  120. data/vendor/libgit2/include/git2/branch.h +3 -2
  121. data/vendor/libgit2/include/git2/checkout.h +7 -0
  122. data/vendor/libgit2/include/git2/clone.h +3 -0
  123. data/vendor/libgit2/include/git2/commit.h +61 -66
  124. data/vendor/libgit2/include/git2/common.h +73 -42
  125. data/vendor/libgit2/include/git2/config.h +57 -71
  126. data/vendor/libgit2/include/git2/cred_helpers.h +2 -2
  127. data/vendor/libgit2/include/git2/diff.h +179 -30
  128. data/vendor/libgit2/include/git2/errors.h +3 -3
  129. data/vendor/libgit2/include/git2/index.h +225 -146
  130. data/vendor/libgit2/include/git2/indexer.h +2 -22
  131. data/vendor/libgit2/include/git2/inttypes.h +9 -9
  132. data/vendor/libgit2/include/git2/merge.h +123 -5
  133. data/vendor/libgit2/include/git2/odb.h +59 -38
  134. data/vendor/libgit2/include/git2/odb_backend.h +45 -104
  135. data/vendor/libgit2/include/git2/oid.h +30 -19
  136. data/vendor/libgit2/include/git2/pack.h +21 -3
  137. data/vendor/libgit2/include/git2/refdb.h +0 -35
  138. data/vendor/libgit2/include/git2/refs.h +93 -31
  139. data/vendor/libgit2/include/git2/refspec.h +17 -0
  140. data/vendor/libgit2/include/git2/remote.h +60 -20
  141. data/vendor/libgit2/include/git2/repository.h +48 -70
  142. data/vendor/libgit2/include/git2/reset.h +3 -3
  143. data/vendor/libgit2/include/git2/revparse.h +22 -0
  144. data/vendor/libgit2/include/git2/stash.h +1 -1
  145. data/vendor/libgit2/include/git2/status.h +131 -56
  146. data/vendor/libgit2/include/git2/strarray.h +2 -2
  147. data/vendor/libgit2/include/git2/submodule.h +16 -16
  148. data/vendor/libgit2/include/git2/sys/commit.h +46 -0
  149. data/vendor/libgit2/include/git2/sys/config.h +71 -0
  150. data/vendor/libgit2/include/git2/sys/index.h +179 -0
  151. data/vendor/libgit2/include/git2/sys/odb_backend.h +86 -0
  152. data/vendor/libgit2/include/git2/sys/refdb_backend.h +158 -0
  153. data/vendor/libgit2/include/git2/sys/refs.h +38 -0
  154. data/vendor/libgit2/include/git2/sys/repository.h +106 -0
  155. data/vendor/libgit2/include/git2/tag.h +44 -18
  156. data/vendor/libgit2/include/git2/trace.h +1 -2
  157. data/vendor/libgit2/include/git2/transport.h +74 -0
  158. data/vendor/libgit2/include/git2/tree.h +12 -22
  159. data/vendor/libgit2/include/git2/types.h +33 -0
  160. data/vendor/libgit2/include/git2/version.h +2 -2
  161. data/vendor/libgit2/src/array.h +66 -0
  162. data/vendor/libgit2/src/attr.c +26 -13
  163. data/vendor/libgit2/src/attr_file.c +3 -2
  164. data/vendor/libgit2/src/attr_file.h +3 -3
  165. data/vendor/libgit2/src/attrcache.h +4 -4
  166. data/vendor/libgit2/src/blob.c +13 -9
  167. data/vendor/libgit2/src/blob.h +2 -2
  168. data/vendor/libgit2/src/branch.c +67 -49
  169. data/vendor/libgit2/src/cache.c +224 -54
  170. data/vendor/libgit2/src/cache.h +33 -20
  171. data/vendor/libgit2/src/checkout.c +145 -85
  172. data/vendor/libgit2/src/clone.c +62 -50
  173. data/vendor/libgit2/src/commit.c +74 -40
  174. data/vendor/libgit2/src/commit.h +2 -3
  175. data/vendor/libgit2/src/commit_list.c +14 -8
  176. data/vendor/libgit2/src/config.c +119 -36
  177. data/vendor/libgit2/src/config.h +3 -0
  178. data/vendor/libgit2/src/config_cache.c +24 -7
  179. data/vendor/libgit2/src/config_file.c +9 -6
  180. data/vendor/libgit2/src/crlf.c +4 -2
  181. data/vendor/libgit2/src/date.c +3 -3
  182. data/vendor/libgit2/src/delta.c +1 -1
  183. data/vendor/libgit2/src/diff.c +681 -303
  184. data/vendor/libgit2/src/diff.h +34 -2
  185. data/vendor/libgit2/src/diff_driver.c +405 -0
  186. data/vendor/libgit2/src/diff_driver.h +49 -0
  187. data/vendor/libgit2/src/diff_file.c +447 -0
  188. data/vendor/libgit2/src/diff_file.h +58 -0
  189. data/vendor/libgit2/src/diff_patch.c +995 -0
  190. data/vendor/libgit2/src/diff_patch.h +46 -0
  191. data/vendor/libgit2/src/diff_print.c +430 -0
  192. data/vendor/libgit2/src/diff_tform.c +464 -203
  193. data/vendor/libgit2/src/diff_xdiff.c +166 -0
  194. data/vendor/libgit2/src/diff_xdiff.h +28 -0
  195. data/vendor/libgit2/src/fetch.c +11 -4
  196. data/vendor/libgit2/src/fileops.c +85 -61
  197. data/vendor/libgit2/src/fileops.h +4 -0
  198. data/vendor/libgit2/src/global.c +10 -2
  199. data/vendor/libgit2/src/global.h +0 -8
  200. data/vendor/libgit2/src/hash/hash_generic.h +3 -3
  201. data/vendor/libgit2/src/hash/hash_win32.h +4 -4
  202. data/vendor/libgit2/src/hashsig.c +0 -1
  203. data/vendor/libgit2/src/ignore.c +68 -28
  204. data/vendor/libgit2/src/ignore.h +10 -1
  205. data/vendor/libgit2/src/index.c +666 -84
  206. data/vendor/libgit2/src/index.h +6 -0
  207. data/vendor/libgit2/src/indexer.c +10 -28
  208. data/vendor/libgit2/src/iterator.c +427 -283
  209. data/vendor/libgit2/src/iterator.h +58 -4
  210. data/vendor/libgit2/src/merge.c +1892 -32
  211. data/vendor/libgit2/src/merge.h +132 -5
  212. data/vendor/libgit2/src/merge_file.c +174 -0
  213. data/vendor/libgit2/src/merge_file.h +71 -0
  214. data/vendor/libgit2/src/mwindow.c +1 -1
  215. data/vendor/libgit2/src/notes.c +45 -48
  216. data/vendor/libgit2/src/object.c +89 -127
  217. data/vendor/libgit2/src/object.h +0 -1
  218. data/vendor/libgit2/src/object_api.c +129 -0
  219. data/vendor/libgit2/src/odb.c +156 -59
  220. data/vendor/libgit2/src/odb.h +5 -2
  221. data/vendor/libgit2/src/odb_loose.c +31 -17
  222. data/vendor/libgit2/src/odb_pack.c +39 -43
  223. data/vendor/libgit2/src/oid.c +62 -27
  224. data/vendor/libgit2/src/oid.h +33 -0
  225. data/vendor/libgit2/src/oidmap.h +4 -6
  226. data/vendor/libgit2/src/pack-objects.c +54 -22
  227. data/vendor/libgit2/src/pack.c +98 -56
  228. data/vendor/libgit2/src/pack.h +3 -1
  229. data/vendor/libgit2/src/pathspec.c +26 -1
  230. data/vendor/libgit2/src/pathspec.h +14 -0
  231. data/vendor/libgit2/src/pool.c +5 -0
  232. data/vendor/libgit2/src/posix.c +2 -2
  233. data/vendor/libgit2/src/posix.h +3 -0
  234. data/vendor/libgit2/src/push.c +13 -10
  235. data/vendor/libgit2/src/refdb.c +82 -62
  236. data/vendor/libgit2/src/refdb.h +16 -16
  237. data/vendor/libgit2/src/refdb_fs.c +386 -133
  238. data/vendor/libgit2/src/reflog.c +3 -1
  239. data/vendor/libgit2/src/refs.c +247 -221
  240. data/vendor/libgit2/src/refs.h +2 -1
  241. data/vendor/libgit2/src/refspec.c +18 -1
  242. data/vendor/libgit2/src/refspec.h +3 -1
  243. data/vendor/libgit2/src/remote.c +434 -253
  244. data/vendor/libgit2/src/remote.h +5 -3
  245. data/vendor/libgit2/src/repository.c +197 -111
  246. data/vendor/libgit2/src/repository.h +26 -5
  247. data/vendor/libgit2/src/reset.c +1 -1
  248. data/vendor/libgit2/src/revparse.c +84 -79
  249. data/vendor/libgit2/src/revwalk.c +1 -1
  250. data/vendor/libgit2/src/signature.c +22 -10
  251. data/vendor/libgit2/src/stash.c +5 -2
  252. data/vendor/libgit2/src/status.c +311 -107
  253. data/vendor/libgit2/src/status.h +23 -0
  254. data/vendor/libgit2/src/submodule.c +21 -13
  255. data/vendor/libgit2/src/tag.c +42 -31
  256. data/vendor/libgit2/src/tag.h +2 -3
  257. data/vendor/libgit2/src/thread-utils.h +105 -3
  258. data/vendor/libgit2/src/trace.c +1 -2
  259. data/vendor/libgit2/src/trace.h +3 -3
  260. data/vendor/libgit2/src/transport.c +18 -6
  261. data/vendor/libgit2/src/transports/cred.c +103 -1
  262. data/vendor/libgit2/src/transports/local.c +19 -9
  263. data/vendor/libgit2/src/transports/smart_protocol.c +32 -12
  264. data/vendor/libgit2/src/transports/ssh.c +519 -0
  265. data/vendor/libgit2/src/transports/winhttp.c +3 -1
  266. data/vendor/libgit2/src/tree.c +26 -28
  267. data/vendor/libgit2/src/tree.h +3 -3
  268. data/vendor/libgit2/src/unix/posix.h +2 -0
  269. data/vendor/libgit2/src/util.c +43 -6
  270. data/vendor/libgit2/src/util.h +40 -12
  271. data/vendor/libgit2/src/vector.c +3 -5
  272. data/vendor/libgit2/src/vector.h +9 -0
  273. data/vendor/libgit2/src/win32/dir.c +1 -1
  274. data/vendor/libgit2/src/win32/error.c +2 -0
  275. data/vendor/libgit2/src/win32/findfile.c +3 -6
  276. data/vendor/libgit2/src/win32/posix_w32.c +85 -59
  277. data/vendor/libgit2/src/win32/pthread.c +16 -8
  278. data/vendor/libgit2/src/win32/pthread.h +7 -4
  279. metadata +407 -306
  280. data/test/coverage/HEAD.json +0 -1
  281. data/vendor/libgit2/include/git2/refdb_backend.h +0 -109
  282. data/vendor/libgit2/src/diff_output.c +0 -1819
  283. data/vendor/libgit2/src/diff_output.h +0 -93
@@ -156,7 +156,7 @@ static int win32_find_git_in_registry(
156
156
  }
157
157
 
158
158
  static int win32_find_existing_dirs(
159
- git_buf *out, const wchar_t *tmpl[], char *temp[])
159
+ git_buf *out, const wchar_t *tmpl[])
160
160
  {
161
161
  struct git_win32__path path16;
162
162
  git_buf buf = GIT_BUF_INIT;
@@ -209,7 +209,6 @@ int git_win32__find_system_dirs(git_buf *out)
209
209
 
210
210
  int git_win32__find_global_dirs(git_buf *out)
211
211
  {
212
- char *temp[3];
213
212
  static const wchar_t *global_tmpls[4] = {
214
213
  L"%HOME%\\",
215
214
  L"%HOMEDRIVE%%HOMEPATH%\\",
@@ -217,12 +216,11 @@ int git_win32__find_global_dirs(git_buf *out)
217
216
  NULL,
218
217
  };
219
218
 
220
- return win32_find_existing_dirs(out, global_tmpls, temp);
219
+ return win32_find_existing_dirs(out, global_tmpls);
221
220
  }
222
221
 
223
222
  int git_win32__find_xdg_dirs(git_buf *out)
224
223
  {
225
- char *temp[6];
226
224
  static const wchar_t *global_tmpls[7] = {
227
225
  L"%XDG_CONFIG_HOME%\\git",
228
226
  L"%APPDATA%\\git",
@@ -233,6 +231,5 @@ int git_win32__find_xdg_dirs(git_buf *out)
233
231
  NULL,
234
232
  };
235
233
 
236
- return win32_find_existing_dirs(out, global_tmpls, temp);
234
+ return win32_find_existing_dirs(out, global_tmpls);
237
235
  }
238
-
@@ -5,6 +5,7 @@
5
5
  * a Linking Exception. For full terms see the included COPYING file.
6
6
  */
7
7
  #include "../posix.h"
8
+ #include "../fileops.h"
8
9
  #include "path.h"
9
10
  #include "utf-conv.h"
10
11
  #include "repository.h"
@@ -89,6 +90,9 @@ static int do_lstat(
89
90
  if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
90
91
  fMode |= S_IFLNK;
91
92
 
93
+ if ((fMode & (S_IFDIR | S_IFLNK)) == (S_IFDIR | S_IFLNK)) // junction
94
+ fMode ^= S_IFLNK;
95
+
92
96
  buf->st_ino = 0;
93
97
  buf->st_gid = 0;
94
98
  buf->st_uid = 0;
@@ -295,7 +299,18 @@ int p_getcwd(char *buffer_out, size_t size)
295
299
 
296
300
  int p_stat(const char* path, struct stat* buf)
297
301
  {
298
- return do_lstat(path, buf, 0);
302
+ char target[GIT_WIN_PATH];
303
+ int error = 0;
304
+
305
+ error = do_lstat(path, buf, 0);
306
+
307
+ /* We need not do this in a loop to unwind chains of symlinks since
308
+ * p_readlink calls GetFinalPathNameByHandle which does it for us. */
309
+ if (error >= 0 && S_ISLNK(buf->st_mode) &&
310
+ (error = p_readlink(path, target, GIT_WIN_PATH)) >= 0)
311
+ error = do_lstat(target, buf, 0);
312
+
313
+ return error;
299
314
  }
300
315
 
301
316
  int p_chdir(const char* path)
@@ -314,9 +329,20 @@ int p_chmod(const char* path, mode_t mode)
314
329
 
315
330
  int p_rmdir(const char* path)
316
331
  {
332
+ int error;
317
333
  wchar_t buf[GIT_WIN_PATH];
318
334
  git__utf8_to_16(buf, GIT_WIN_PATH, path);
319
- return _wrmdir(buf);
335
+
336
+ error = _wrmdir(buf);
337
+
338
+ /* _wrmdir() is documented to return EACCES if "A program has an open
339
+ * handle to the directory." This sounds like what everybody else calls
340
+ * EBUSY. Let's convert appropriate error codes.
341
+ */
342
+ if (GetLastError() == ERROR_SHARING_VIOLATION)
343
+ errno = EBUSY;
344
+
345
+ return error;
320
346
  }
321
347
 
322
348
  int p_hide_directory__w32(const char *path)
@@ -457,29 +483,29 @@ int p_send(GIT_SOCKET socket, const void *buffer, size_t length, int flags)
457
483
  * Borrowed from http://old.nabble.com/Porting-localtime_r-and-gmtime_r-td15282276.html
458
484
  * On Win32, `gmtime_r` doesn't exist but `gmtime` is threadsafe, so we can use that
459
485
  */
460
- struct tm *
461
- p_localtime_r (const time_t *timer, struct tm *result)
462
- {
463
- struct tm *local_result;
464
- local_result = localtime (timer);
465
-
466
- if (local_result == NULL || result == NULL)
467
- return NULL;
468
-
469
- memcpy (result, local_result, sizeof (struct tm));
470
- return result;
471
- }
472
- struct tm *
473
- p_gmtime_r (const time_t *timer, struct tm *result)
474
- {
475
- struct tm *local_result;
476
- local_result = gmtime (timer);
477
-
478
- if (local_result == NULL || result == NULL)
479
- return NULL;
480
-
481
- memcpy (result, local_result, sizeof (struct tm));
482
- return result;
486
+ struct tm *
487
+ p_localtime_r (const time_t *timer, struct tm *result)
488
+ {
489
+ struct tm *local_result;
490
+ local_result = localtime (timer);
491
+
492
+ if (local_result == NULL || result == NULL)
493
+ return NULL;
494
+
495
+ memcpy (result, local_result, sizeof (struct tm));
496
+ return result;
497
+ }
498
+ struct tm *
499
+ p_gmtime_r (const time_t *timer, struct tm *result)
500
+ {
501
+ struct tm *local_result;
502
+ local_result = gmtime (timer);
503
+
504
+ if (local_result == NULL || result == NULL)
505
+ return NULL;
506
+
507
+ memcpy (result, local_result, sizeof (struct tm));
508
+ return result;
483
509
  }
484
510
 
485
511
  #if defined(_MSC_VER) || defined(_MSC_EXTENSIONS)
@@ -492,44 +518,44 @@ p_gmtime_r (const time_t *timer, struct tm *result)
492
518
  #define _TIMEZONE_DEFINED
493
519
  struct timezone
494
520
  {
495
- int tz_minuteswest; /* minutes W of Greenwich */
496
- int tz_dsttime; /* type of dst correction */
521
+ int tz_minuteswest; /* minutes W of Greenwich */
522
+ int tz_dsttime; /* type of dst correction */
497
523
  };
498
524
  #endif
499
-
525
+
500
526
  int p_gettimeofday(struct timeval *tv, struct timezone *tz)
501
527
  {
502
- FILETIME ft;
503
- unsigned __int64 tmpres = 0;
504
- static int tzflag;
505
-
506
- if (NULL != tv)
507
- {
508
- GetSystemTimeAsFileTime(&ft);
509
-
510
- tmpres |= ft.dwHighDateTime;
511
- tmpres <<= 32;
512
- tmpres |= ft.dwLowDateTime;
513
-
514
- /*converting file time to unix epoch*/
515
- tmpres /= 10; /*convert into microseconds*/
516
- tmpres -= DELTA_EPOCH_IN_MICROSECS;
517
- tv->tv_sec = (long)(tmpres / 1000000UL);
518
- tv->tv_usec = (long)(tmpres % 1000000UL);
519
- }
520
-
521
- if (NULL != tz)
522
- {
523
- if (!tzflag)
524
- {
525
- _tzset();
526
- tzflag++;
527
- }
528
- tz->tz_minuteswest = _timezone / 60;
529
- tz->tz_dsttime = _daylight;
530
- }
531
-
532
- return 0;
528
+ FILETIME ft;
529
+ unsigned __int64 tmpres = 0;
530
+ static int tzflag;
531
+
532
+ if (NULL != tv)
533
+ {
534
+ GetSystemTimeAsFileTime(&ft);
535
+
536
+ tmpres |= ft.dwHighDateTime;
537
+ tmpres <<= 32;
538
+ tmpres |= ft.dwLowDateTime;
539
+
540
+ /*converting file time to unix epoch*/
541
+ tmpres /= 10; /*convert into microseconds*/
542
+ tmpres -= DELTA_EPOCH_IN_MICROSECS;
543
+ tv->tv_sec = (long)(tmpres / 1000000UL);
544
+ tv->tv_usec = (long)(tmpres % 1000000UL);
545
+ }
546
+
547
+ if (NULL != tz)
548
+ {
549
+ if (!tzflag)
550
+ {
551
+ _tzset();
552
+ tzflag++;
553
+ }
554
+ tz->tz_minuteswest = _timezone / 60;
555
+ tz->tz_dsttime = _daylight;
556
+ }
557
+
558
+ return 0;
533
559
  }
534
560
 
535
561
  int p_inet_pton(int af, const char* src, void* dst)
@@ -14,22 +14,30 @@ int pthread_create(
14
14
  void *GIT_RESTRICT arg)
15
15
  {
16
16
  GIT_UNUSED(attr);
17
- *thread = (pthread_t) CreateThread(
17
+ *thread = CreateThread(
18
18
  NULL, 0, (LPTHREAD_START_ROUTINE)start_routine, arg, 0, NULL);
19
19
  return *thread ? 0 : -1;
20
20
  }
21
21
 
22
22
  int pthread_join(pthread_t thread, void **value_ptr)
23
23
  {
24
- int ret;
25
- ret = WaitForSingleObject(thread, INFINITE);
26
- if (ret && value_ptr)
27
- GetExitCodeThread(thread, (void*) value_ptr);
28
- return -(!!ret);
24
+ DWORD ret = WaitForSingleObject(thread, INFINITE);
25
+
26
+ if (ret == WAIT_OBJECT_0) {
27
+ if (value_ptr != NULL) {
28
+ *value_ptr = NULL;
29
+ GetExitCodeThread(thread, (void *)value_ptr);
30
+ }
31
+ CloseHandle(thread);
32
+ return 0;
33
+ }
34
+
35
+ return -1;
29
36
  }
30
37
 
31
- int pthread_mutex_init(pthread_mutex_t *GIT_RESTRICT mutex,
32
- const pthread_mutexattr_t *GIT_RESTRICT mutexattr)
38
+ int pthread_mutex_init(
39
+ pthread_mutex_t *GIT_RESTRICT mutex,
40
+ const pthread_mutexattr_t *GIT_RESTRICT mutexattr)
33
41
  {
34
42
  GIT_UNUSED(mutexattr);
35
43
  InitializeCriticalSection(mutex);
@@ -25,13 +25,16 @@ typedef HANDLE pthread_cond_t;
25
25
 
26
26
  #define PTHREAD_MUTEX_INITIALIZER {(void*)-1};
27
27
 
28
- int pthread_create(pthread_t *GIT_RESTRICT,
29
- const pthread_attr_t *GIT_RESTRICT,
30
- void *(*start_routine)(void*), void *__restrict);
28
+ int pthread_create(
29
+ pthread_t *GIT_RESTRICT,
30
+ const pthread_attr_t *GIT_RESTRICT,
31
+ void *(*start_routine)(void*),
32
+ void *__restrict);
31
33
 
32
34
  int pthread_join(pthread_t, void **);
33
35
 
34
- int pthread_mutex_init(pthread_mutex_t *GIT_RESTRICT, const pthread_mutexattr_t *GIT_RESTRICT);
36
+ int pthread_mutex_init(
37
+ pthread_mutex_t *GIT_RESTRICT, const pthread_mutexattr_t *GIT_RESTRICT);
35
38
  int pthread_mutex_destroy(pthread_mutex_t *);
36
39
  int pthread_mutex_lock(pthread_mutex_t *);
37
40
  int pthread_mutex_unlock(pthread_mutex_t *);
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rugged
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0.gh.de28323
5
- prerelease: 7
4
+ version: 0.19.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Scott Chacon
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-04-18 00:00:00.000000000 Z
13
+ date: 2013-07-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake-compiler
@@ -59,383 +59,484 @@ files:
59
59
  - README.md
60
60
  - Rakefile
61
61
  - LICENSE
62
- - lib/rugged.rb
62
+ - lib/rugged/branch.rb
63
63
  - lib/rugged/commit.rb
64
- - lib/rugged/repository.rb
65
- - lib/rugged/remote.rb
64
+ - lib/rugged/console.rb
65
+ - lib/rugged/diff/delta.rb
66
+ - lib/rugged/diff/hunk.rb
67
+ - lib/rugged/diff/line.rb
68
+ - lib/rugged/diff/patch.rb
69
+ - lib/rugged/diff.rb
66
70
  - lib/rugged/index.rb
71
+ - lib/rugged/object.rb
67
72
  - lib/rugged/reference.rb
68
- - lib/rugged/version.rb
73
+ - lib/rugged/remote.rb
74
+ - lib/rugged/repository.rb
75
+ - lib/rugged/tag.rb
69
76
  - lib/rugged/tree.rb
70
- - lib/rugged/object.rb
71
- - lib/rugged/branch.rb
77
+ - lib/rugged/version.rb
72
78
  - lib/rugged/walker.rb
73
- - lib/rugged/tag.rb
74
- - test/repo_test.rb
75
- - test/errors_test.rb
76
- - test/remote_test.rb
77
- - test/object_test.rb
78
- - test/config_test.rb
79
- - test/index_test.rb
80
- - test/lib_test.rb
79
+ - lib/rugged.rb
80
+ - test/blob_test.rb
81
81
  - test/branch_test.rb
82
- - test/fixtures/testrepo.git/description
82
+ - test/commit_test.rb
83
+ - test/config_test.rb
84
+ - test/coverage/cover.rb
85
+ - test/diff_test.rb
86
+ - test/errors_test.rb
87
+ - test/fixtures/alternate/objects/14/6ae76773c91e3b1d00cf7a338ec55ae58297e2
88
+ - test/fixtures/alternate/objects/14/9c32d47e99d0a3572ff1e70a2e0051bbf347a9
89
+ - test/fixtures/alternate/objects/14/fb3108588f9421bf764041e5e3ac305eb6277f
90
+ - test/fixtures/archive.tar.gz
91
+ - test/fixtures/attr/attr0
92
+ - test/fixtures/attr/attr1
93
+ - test/fixtures/attr/attr2
94
+ - test/fixtures/attr/attr3
95
+ - test/fixtures/attr/binfile
96
+ - test/fixtures/attr/dir/file
97
+ - test/fixtures/attr/file
98
+ - test/fixtures/attr/gitattributes
99
+ - test/fixtures/attr/gitignore
100
+ - test/fixtures/attr/ign
101
+ - test/fixtures/attr/macro_bad
102
+ - test/fixtures/attr/macro_test
103
+ - test/fixtures/attr/root_test1
104
+ - test/fixtures/attr/root_test2
105
+ - test/fixtures/attr/root_test3
106
+ - test/fixtures/attr/root_test4.txt
107
+ - test/fixtures/attr/sub/abc
108
+ - test/fixtures/attr/sub/dir/file
109
+ - test/fixtures/attr/sub/file
110
+ - test/fixtures/attr/sub/ign/file
111
+ - test/fixtures/attr/sub/ign/sub/file
112
+ - test/fixtures/attr/sub/sub/dir
113
+ - test/fixtures/attr/sub/sub/file
114
+ - test/fixtures/attr/sub/sub/subsub.txt
115
+ - test/fixtures/attr/sub/subdir_test1
116
+ - test/fixtures/attr/sub/subdir_test2.txt
117
+ - test/fixtures/diff/another.txt
118
+ - test/fixtures/diff/readme.txt
119
+ - test/fixtures/mergedrepo/conflicts-one.txt
120
+ - test/fixtures/mergedrepo/conflicts-two.txt
121
+ - test/fixtures/mergedrepo/one.txt
122
+ - test/fixtures/mergedrepo/two.txt
123
+ - test/fixtures/status/current_file
124
+ - test/fixtures/status/ignored_file
125
+ - test/fixtures/status/modified_file
126
+ - test/fixtures/status/new_file
127
+ - test/fixtures/status/staged_changes
128
+ - test/fixtures/status/staged_changes_modified_file
129
+ - test/fixtures/status/staged_delete_modified_file
130
+ - test/fixtures/status/staged_new_file
131
+ - test/fixtures/status/staged_new_file_modified_file
132
+ - test/fixtures/status/subdir/current_file
133
+ - test/fixtures/status/subdir/modified_file
134
+ - test/fixtures/status/subdir/new_file
135
+ - test/fixtures/status/subdir.txt
136
+ - test/fixtures/status/这
83
137
  - test/fixtures/testrepo.git/config
138
+ - test/fixtures/testrepo.git/description
139
+ - test/fixtures/testrepo.git/HEAD
140
+ - test/fixtures/testrepo.git/index
141
+ - test/fixtures/testrepo.git/info/exclude
142
+ - test/fixtures/testrepo.git/logs/HEAD
84
143
  - test/fixtures/testrepo.git/logs/refs/heads/master
85
144
  - test/fixtures/testrepo.git/logs/refs/notes/commits
86
- - test/fixtures/testrepo.git/logs/HEAD
87
- - test/fixtures/testrepo.git/index
88
- - test/fixtures/testrepo.git/objects/60/d415052a33de2150bf68757f6461df4f563ae4
89
- - test/fixtures/testrepo.git/objects/fd/093bff70906175335656e6ce6ae05783708765
90
- - test/fixtures/testrepo.git/objects/9b/7384fe1676186192842f5d3e129457b62db9e3
91
- - test/fixtures/testrepo.git/objects/5b/5b025afb0b4c913b4c338a42934a3863bf3644
92
- - test/fixtures/testrepo.git/objects/61/9f9935957e010c419cb9d15621916ddfcc0b96
93
- - test/fixtures/testrepo.git/objects/b7/4713326bc972cc15751ed504dca6f6f3b91f7a
145
+ - test/fixtures/testrepo.git/objects/0c/37a5391bbff43c37f0d0371823a5509eed5b1d
146
+ - test/fixtures/testrepo.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca08
94
147
  - test/fixtures/testrepo.git/objects/18/1037049a54a1eb5fab404658a3a250b44335d7
95
148
  - test/fixtures/testrepo.git/objects/18/10dff58d8a660512d4832e740f692884338ccd
96
- - test/fixtures/testrepo.git/objects/94/eca2de348d5f672faf56b0decafa5937e3235e
97
- - test/fixtures/testrepo.git/objects/75/057dd4114e74cca1d750d0aee1647c903cb60a
98
- - test/fixtures/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045
99
- - test/fixtures/testrepo.git/objects/a7/1586c1dfe8a71c6cbf6c129f404c5642ff31bd
100
- - test/fixtures/testrepo.git/objects/be/3563ae3f795b2b4353bcce3a527ad0a4f7f644
101
- - test/fixtures/testrepo.git/objects/0c/37a5391bbff43c37f0d0371823a5509eed5b1d
102
- - test/fixtures/testrepo.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
103
- - test/fixtures/testrepo.git/objects/c4/dc1555e4d4fa0e0c9c3fc46734c7c35b3ce90b
104
- - test/fixtures/testrepo.git/objects/c4/7800c7266a2be04c571c04d5a6614691ea99bd
105
149
  - test/fixtures/testrepo.git/objects/2d/2eff63372b08adf0a9eb84109ccf7d19e2f3a2
150
+ - test/fixtures/testrepo.git/objects/36/060c58702ed4c2a40832c51758d5344201d89a
106
151
  - test/fixtures/testrepo.git/objects/44/1034f860c1d5d90e4188d11ae0d325176869a8
107
- - test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx
108
- - test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack
152
+ - test/fixtures/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057
153
+ - test/fixtures/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045
154
+ - test/fixtures/testrepo.git/objects/5b/5b025afb0b4c913b4c338a42934a3863bf3644
155
+ - test/fixtures/testrepo.git/objects/60/d415052a33de2150bf68757f6461df4f563ae4
156
+ - test/fixtures/testrepo.git/objects/61/9f9935957e010c419cb9d15621916ddfcc0b96
157
+ - test/fixtures/testrepo.git/objects/68/8a8f4ef7496901d15322972f96e212a9e466cc
158
+ - test/fixtures/testrepo.git/objects/75/057dd4114e74cca1d750d0aee1647c903cb60a
159
+ - test/fixtures/testrepo.git/objects/77/71329dfa3002caf8c61a0ceb62a31d09023f37
160
+ - test/fixtures/testrepo.git/objects/81/4889a078c031f61ed08ab5fa863aea9314344d
109
161
  - test/fixtures/testrepo.git/objects/84/96071c1b46c854b31185ea97743be6a8774479
110
- - test/fixtures/testrepo.git/objects/36/060c58702ed4c2a40832c51758d5344201d89a
162
+ - test/fixtures/testrepo.git/objects/94/eca2de348d5f672faf56b0decafa5937e3235e
163
+ - test/fixtures/testrepo.git/objects/9b/7384fe1676186192842f5d3e129457b62db9e3
164
+ - test/fixtures/testrepo.git/objects/9f/d738e8f7967c078dceed8190330fc8648ee56a
111
165
  - test/fixtures/testrepo.git/objects/a4/a7dce85cf63874e984719f4fdd239f5145052f
166
+ - test/fixtures/testrepo.git/objects/a7/1586c1dfe8a71c6cbf6c129f404c5642ff31bd
112
167
  - test/fixtures/testrepo.git/objects/a8/233120f6ad708f843d861ce2b7228ec4e3dec6
113
- - test/fixtures/testrepo.git/objects/68/8a8f4ef7496901d15322972f96e212a9e466cc
168
+ - test/fixtures/testrepo.git/objects/b7/4713326bc972cc15751ed504dca6f6f3b91f7a
169
+ - test/fixtures/testrepo.git/objects/be/3563ae3f795b2b4353bcce3a527ad0a4f7f644
170
+ - test/fixtures/testrepo.git/objects/c4/7800c7266a2be04c571c04d5a6614691ea99bd
171
+ - test/fixtures/testrepo.git/objects/c4/dc1555e4d4fa0e0c9c3fc46734c7c35b3ce90b
172
+ - test/fixtures/testrepo.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
114
173
  - test/fixtures/testrepo.git/objects/f6/0079018b664e4e79329a7ef9559c8d9e0378d1
115
- - test/fixtures/testrepo.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca08
116
- - test/fixtures/testrepo.git/objects/81/4889a078c031f61ed08ab5fa863aea9314344d
117
- - test/fixtures/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057
118
174
  - test/fixtures/testrepo.git/objects/fa/49b077972391ad58037050f2a75f74e3671e92
119
- - test/fixtures/testrepo.git/objects/9f/d738e8f7967c078dceed8190330fc8648ee56a
120
- - test/fixtures/testrepo.git/info/exclude
121
- - test/fixtures/testrepo.git/refs/tags/v0.9
122
- - test/fixtures/testrepo.git/refs/tags/v1.0
175
+ - test/fixtures/testrepo.git/objects/fd/093bff70906175335656e6ce6ae05783708765
176
+ - test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx
177
+ - test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack
178
+ - test/fixtures/testrepo.git/packed-refs
123
179
  - test/fixtures/testrepo.git/refs/heads/master
124
180
  - test/fixtures/testrepo.git/refs/notes/commits
125
- - test/fixtures/testrepo.git/packed-refs
126
- - test/fixtures/testrepo.git/HEAD
127
- - test/fixtures/alternate/objects/14/fb3108588f9421bf764041e5e3ac305eb6277f
128
- - test/fixtures/alternate/objects/14/6ae76773c91e3b1d00cf7a338ec55ae58297e2
129
- - test/fixtures/alternate/objects/14/9c32d47e99d0a3572ff1e70a2e0051bbf347a9
130
- - test/test_helper.rb
131
- - test/walker_test.rb
132
- - test/reference_test.rb
133
- - test/commit_test.rb
134
- - test/coverage/cover.rb
135
- - test/coverage/HEAD.json
181
+ - test/fixtures/testrepo.git/refs/tags/v0.9
182
+ - test/fixtures/testrepo.git/refs/tags/v1.0
183
+ - test/fixtures/text_file.md
184
+ - test/fixtures/unsymlinked.git/config
185
+ - test/fixtures/unsymlinked.git/description
186
+ - test/fixtures/unsymlinked.git/HEAD
187
+ - test/fixtures/unsymlinked.git/info/exclude
188
+ - test/fixtures/unsymlinked.git/objects/08/8b64704e0d6b8bd061dea879418cb5442a3fbf
189
+ - test/fixtures/unsymlinked.git/objects/13/a5e939bca25940c069fd2169d993dba328e30b
190
+ - test/fixtures/unsymlinked.git/objects/19/bf568e59e3a0b363cafb4106226e62d4a4c41c
191
+ - test/fixtures/unsymlinked.git/objects/58/1fadd35b4cf320d102a152f918729011604773
192
+ - test/fixtures/unsymlinked.git/objects/5c/87b6791e8b13da658a14d1ef7e09b5dc3bac8c
193
+ - test/fixtures/unsymlinked.git/objects/6f/e5f5398af85fb3de8a6aba0339b6d3bfa26a27
194
+ - test/fixtures/unsymlinked.git/objects/7f/ccd75616ec188b8f1b23d67506a334cc34a49d
195
+ - test/fixtures/unsymlinked.git/objects/80/6999882bf91d24241e4077906b9017605eb1f3
196
+ - test/fixtures/unsymlinked.git/objects/83/7d176303c5005505ec1e4a30231c40930c0230
197
+ - test/fixtures/unsymlinked.git/objects/a8/595ccca04f40818ae0155c8f9c77a230e597b6
198
+ - test/fixtures/unsymlinked.git/objects/cf/8f1cf5cce859c438d6cc067284cb5e161206e7
199
+ - test/fixtures/unsymlinked.git/objects/d5/278d05c8607ec420bfee4cf219fbc0eeebfd6a
200
+ - test/fixtures/unsymlinked.git/objects/f4/e16fb76536591a41454194058d048d8e4dd2e9
201
+ - test/fixtures/unsymlinked.git/objects/f9/e65619d93fdf2673882e0a261c5e93b1a84006
202
+ - test/fixtures/unsymlinked.git/refs/heads/exe-file
203
+ - test/fixtures/unsymlinked.git/refs/heads/master
204
+ - test/fixtures/unsymlinked.git/refs/heads/reg-file
205
+ - test/index_test.rb
206
+ - test/lib_test.rb
136
207
  - test/note_test.rb
208
+ - test/object_test.rb
209
+ - test/reference_test.rb
210
+ - test/remote_test.rb
211
+ - test/repo_pack_test.rb
137
212
  - test/repo_reset_test.rb
213
+ - test/repo_test.rb
138
214
  - test/tag_test.rb
139
- - test/blob_test.rb
215
+ - test/test_helper.rb
140
216
  - test/tree_test.rb
141
- - test/repo_pack_test.rb
142
- - ext/rugged/rugged_commit.c
143
- - ext/rugged/rugged_blob.c
217
+ - test/walker_test.rb
218
+ - ext/rugged/rugged.c
144
219
  - ext/rugged/rugged.h
145
- - ext/rugged/rugged_remote.c
220
+ - ext/rugged/rugged_blob.c
221
+ - ext/rugged/rugged_branch.c
222
+ - ext/rugged/rugged_commit.c
223
+ - ext/rugged/rugged_config.c
224
+ - ext/rugged/rugged_diff.c
225
+ - ext/rugged/rugged_diff_delta.c
226
+ - ext/rugged/rugged_diff_hunk.c
227
+ - ext/rugged/rugged_diff_line.c
228
+ - ext/rugged/rugged_diff_patch.c
146
229
  - ext/rugged/rugged_index.c
147
- - ext/rugged/rugged_signature.c
148
- - ext/rugged/rugged.c
230
+ - ext/rugged/rugged_note.c
231
+ - ext/rugged/rugged_object.c
149
232
  - ext/rugged/rugged_reference.c
233
+ - ext/rugged/rugged_remote.c
150
234
  - ext/rugged/rugged_repo.c
151
235
  - ext/rugged/rugged_revwalk.c
152
- - ext/rugged/rugged_note.c
153
- - ext/rugged/rugged_config.c
154
- - ext/rugged/rugged_tag.c
155
- - ext/rugged/rugged_object.c
156
236
  - ext/rugged/rugged_settings.c
237
+ - ext/rugged/rugged_signature.c
238
+ - ext/rugged/rugged_tag.c
157
239
  - ext/rugged/rugged_tree.c
158
- - ext/rugged/rugged_branch.c
159
- - vendor/libgit2/include/git2/ignore.h
160
- - vendor/libgit2/include/git2/refs.h
161
- - vendor/libgit2/include/git2/version.h
162
- - vendor/libgit2/include/git2/stdint.h
163
240
  - vendor/libgit2/include/git2/attr.h
164
- - vendor/libgit2/include/git2/signature.h
165
- - vendor/libgit2/include/git2/index.h
166
- - vendor/libgit2/include/git2/pack.h
167
- - vendor/libgit2/include/git2/tree.h
168
- - vendor/libgit2/include/git2/cred_helpers.h
169
- - vendor/libgit2/include/git2/stash.h
170
- - vendor/libgit2/include/git2/strarray.h
171
- - vendor/libgit2/include/git2/object.h
172
- - vendor/libgit2/include/git2/common.h
173
- - vendor/libgit2/include/git2/transport.h
174
- - vendor/libgit2/include/git2/indexer.h
175
- - vendor/libgit2/include/git2/types.h
241
+ - vendor/libgit2/include/git2/blob.h
176
242
  - vendor/libgit2/include/git2/branch.h
177
- - vendor/libgit2/include/git2/submodule.h
178
- - vendor/libgit2/include/git2/trace.h
179
- - vendor/libgit2/include/git2/graph.h
180
243
  - vendor/libgit2/include/git2/checkout.h
181
- - vendor/libgit2/include/git2/blob.h
182
- - vendor/libgit2/include/git2/inttypes.h
244
+ - vendor/libgit2/include/git2/clone.h
245
+ - vendor/libgit2/include/git2/commit.h
246
+ - vendor/libgit2/include/git2/common.h
247
+ - vendor/libgit2/include/git2/config.h
248
+ - vendor/libgit2/include/git2/cred_helpers.h
249
+ - vendor/libgit2/include/git2/diff.h
183
250
  - vendor/libgit2/include/git2/errors.h
251
+ - vendor/libgit2/include/git2/graph.h
252
+ - vendor/libgit2/include/git2/ignore.h
253
+ - vendor/libgit2/include/git2/index.h
254
+ - vendor/libgit2/include/git2/indexer.h
255
+ - vendor/libgit2/include/git2/inttypes.h
256
+ - vendor/libgit2/include/git2/merge.h
257
+ - vendor/libgit2/include/git2/message.h
184
258
  - vendor/libgit2/include/git2/net.h
185
- - vendor/libgit2/include/git2/refspec.h
186
- - vendor/libgit2/include/git2/revparse.h
259
+ - vendor/libgit2/include/git2/notes.h
260
+ - vendor/libgit2/include/git2/object.h
261
+ - vendor/libgit2/include/git2/odb.h
187
262
  - vendor/libgit2/include/git2/odb_backend.h
263
+ - vendor/libgit2/include/git2/oid.h
264
+ - vendor/libgit2/include/git2/pack.h
265
+ - vendor/libgit2/include/git2/push.h
188
266
  - vendor/libgit2/include/git2/refdb.h
189
- - vendor/libgit2/include/git2/odb.h
190
- - vendor/libgit2/include/git2/reset.h
191
- - vendor/libgit2/include/git2/commit.h
192
- - vendor/libgit2/include/git2/merge.h
267
+ - vendor/libgit2/include/git2/reflog.h
268
+ - vendor/libgit2/include/git2/refs.h
269
+ - vendor/libgit2/include/git2/refspec.h
270
+ - vendor/libgit2/include/git2/remote.h
193
271
  - vendor/libgit2/include/git2/repository.h
194
- - vendor/libgit2/include/git2/clone.h
272
+ - vendor/libgit2/include/git2/reset.h
273
+ - vendor/libgit2/include/git2/revparse.h
274
+ - vendor/libgit2/include/git2/revwalk.h
275
+ - vendor/libgit2/include/git2/signature.h
276
+ - vendor/libgit2/include/git2/stash.h
195
277
  - vendor/libgit2/include/git2/status.h
278
+ - vendor/libgit2/include/git2/stdint.h
279
+ - vendor/libgit2/include/git2/strarray.h
280
+ - vendor/libgit2/include/git2/submodule.h
281
+ - vendor/libgit2/include/git2/sys/commit.h
282
+ - vendor/libgit2/include/git2/sys/config.h
283
+ - vendor/libgit2/include/git2/sys/index.h
284
+ - vendor/libgit2/include/git2/sys/odb_backend.h
285
+ - vendor/libgit2/include/git2/sys/refdb_backend.h
286
+ - vendor/libgit2/include/git2/sys/refs.h
287
+ - vendor/libgit2/include/git2/sys/repository.h
196
288
  - vendor/libgit2/include/git2/tag.h
197
- - vendor/libgit2/include/git2/oid.h
198
- - vendor/libgit2/include/git2/remote.h
199
- - vendor/libgit2/include/git2/config.h
200
- - vendor/libgit2/include/git2/message.h
201
- - vendor/libgit2/include/git2/revwalk.h
202
- - vendor/libgit2/include/git2/diff.h
203
289
  - vendor/libgit2/include/git2/threads.h
204
- - vendor/libgit2/include/git2/reflog.h
205
- - vendor/libgit2/include/git2/push.h
206
- - vendor/libgit2/include/git2/notes.h
207
- - vendor/libgit2/include/git2/refdb_backend.h
290
+ - vendor/libgit2/include/git2/trace.h
291
+ - vendor/libgit2/include/git2/transport.h
292
+ - vendor/libgit2/include/git2/tree.h
293
+ - vendor/libgit2/include/git2/types.h
294
+ - vendor/libgit2/include/git2/version.h
208
295
  - vendor/libgit2/include/git2.h
209
- - vendor/libgit2/src/ignore.h
210
- - vendor/libgit2/src/odb_loose.c
211
- - vendor/libgit2/src/refs.h
212
- - vendor/libgit2/src/odb.c
213
- - vendor/libgit2/src/commit_list.h
214
- - vendor/libgit2/src/vector.h
215
- - vendor/libgit2/src/commit_list.c
216
- - vendor/libgit2/src/notes.c
217
- - vendor/libgit2/src/hash/hash_win32.c
218
- - vendor/libgit2/src/hash/hash_win32.h
219
- - vendor/libgit2/src/hash/hash_generic.h
220
- - vendor/libgit2/src/hash/hash_openssl.h
221
- - vendor/libgit2/src/hash/hash_generic.c
222
- - vendor/libgit2/src/diff_output.c
223
- - vendor/libgit2/src/graph.c
224
- - vendor/libgit2/src/pqueue.h
225
- - vendor/libgit2/src/path.c
226
- - vendor/libgit2/src/reflog.c
227
- - vendor/libgit2/src/tree.c
296
+ - vendor/libgit2/src/amiga/map.c
297
+ - vendor/libgit2/src/array.h
298
+ - vendor/libgit2/src/attr.c
228
299
  - vendor/libgit2/src/attr.h
229
- - vendor/libgit2/src/remote.c
230
- - vendor/libgit2/src/thread-utils.c
231
- - vendor/libgit2/src/repo_template.h
232
- - vendor/libgit2/src/signature.h
233
- - vendor/libgit2/src/index.h
234
- - vendor/libgit2/src/pack.h
235
- - vendor/libgit2/src/refdb_fs.c
236
- - vendor/libgit2/src/compress.h
237
- - vendor/libgit2/src/tree.h
238
- - vendor/libgit2/src/tag.c
239
- - vendor/libgit2/src/filebuf.c
300
+ - vendor/libgit2/src/attr_file.c
301
+ - vendor/libgit2/src/attr_file.h
240
302
  - vendor/libgit2/src/attrcache.h
241
- - vendor/libgit2/src/cc-compat.h
242
- - vendor/libgit2/src/revwalk.c
243
- - vendor/libgit2/src/attr.c
244
- - vendor/libgit2/src/push.c
303
+ - vendor/libgit2/src/blob.c
304
+ - vendor/libgit2/src/blob.h
245
305
  - vendor/libgit2/src/branch.c
246
- - vendor/libgit2/src/fnmatch.c
247
- - vendor/libgit2/src/odb_pack.c
248
- - vendor/libgit2/src/config.c
249
- - vendor/libgit2/src/offmap.h
250
- - vendor/libgit2/src/thread-utils.h
251
- - vendor/libgit2/src/object.h
252
- - vendor/libgit2/src/common.h
253
- - vendor/libgit2/src/sha1_lookup.c
254
- - vendor/libgit2/src/transport.c
255
- - vendor/libgit2/src/pathspec.c
256
- - vendor/libgit2/src/delta-apply.c
257
- - vendor/libgit2/src/oid.c
258
- - vendor/libgit2/src/config_cache.c
259
- - vendor/libgit2/src/status.c
260
- - vendor/libgit2/src/map.h
261
- - vendor/libgit2/src/transports/cred.c
262
- - vendor/libgit2/src/transports/git.c
263
- - vendor/libgit2/src/transports/local.c
264
- - vendor/libgit2/src/transports/winhttp.c
265
- - vendor/libgit2/src/transports/cred_helpers.c
266
- - vendor/libgit2/src/transports/http.c
267
- - vendor/libgit2/src/transports/smart_protocol.c
268
- - vendor/libgit2/src/transports/smart.h
269
- - vendor/libgit2/src/transports/smart_pkt.c
270
- - vendor/libgit2/src/transports/smart.c
271
- - vendor/libgit2/src/delta.h
272
- - vendor/libgit2/src/fetch.c
273
- - vendor/libgit2/src/pack-objects.c
274
- - vendor/libgit2/src/refs.c
275
- - vendor/libgit2/src/iterator.h
276
- - vendor/libgit2/src/win32/mingw-compat.h
277
- - vendor/libgit2/src/win32/error.c
278
- - vendor/libgit2/src/win32/version.h
279
- - vendor/libgit2/src/win32/error.h
280
- - vendor/libgit2/src/win32/msvc-compat.h
281
- - vendor/libgit2/src/win32/precompiled.h
282
- - vendor/libgit2/src/win32/findfile.h
283
- - vendor/libgit2/src/win32/findfile.c
284
- - vendor/libgit2/src/win32/precompiled.c
285
- - vendor/libgit2/src/win32/dir.c
286
- - vendor/libgit2/src/win32/utf-conv.h
287
- - vendor/libgit2/src/win32/utf-conv.c
288
- - vendor/libgit2/src/win32/posix.h
289
- - vendor/libgit2/src/win32/pthread.h
290
- - vendor/libgit2/src/win32/map.c
291
- - vendor/libgit2/src/win32/dir.h
292
- - vendor/libgit2/src/win32/posix_w32.c
293
- - vendor/libgit2/src/win32/pthread.c
294
- - vendor/libgit2/src/attr_file.c
295
- - vendor/libgit2/src/tree-cache.c
296
306
  - vendor/libgit2/src/branch.h
297
- - vendor/libgit2/src/hash.h
298
- - vendor/libgit2/src/filter.h
299
- - vendor/libgit2/src/unix/realpath.c
300
- - vendor/libgit2/src/unix/posix.h
301
- - vendor/libgit2/src/unix/map.c
302
- - vendor/libgit2/src/trace.c
303
- - vendor/libgit2/src/message.c
304
- - vendor/libgit2/src/hashsig.h
305
- - vendor/libgit2/src/date.c
306
- - vendor/libgit2/src/submodule.h
307
- - vendor/libgit2/src/fileops.c
308
- - vendor/libgit2/src/trace.h
309
- - vendor/libgit2/src/ignore.c
310
- - vendor/libgit2/src/diff_output.h
311
- - vendor/libgit2/src/fetch.h
312
- - vendor/libgit2/src/refdb.c
313
- - vendor/libgit2/src/filter.c
307
+ - vendor/libgit2/src/bswap.h
314
308
  - vendor/libgit2/src/buf_text.c
309
+ - vendor/libgit2/src/buf_text.h
310
+ - vendor/libgit2/src/buffer.c
311
+ - vendor/libgit2/src/buffer.h
312
+ - vendor/libgit2/src/cache.c
313
+ - vendor/libgit2/src/cache.h
314
+ - vendor/libgit2/src/cc-compat.h
315
+ - vendor/libgit2/src/checkout.c
315
316
  - vendor/libgit2/src/checkout.h
316
317
  - vendor/libgit2/src/clone.c
317
- - vendor/libgit2/src/repository.c
318
- - vendor/libgit2/src/config_file.h
319
- - vendor/libgit2/src/pack-objects.h
318
+ - vendor/libgit2/src/commit.c
319
+ - vendor/libgit2/src/commit.h
320
+ - vendor/libgit2/src/commit_list.c
321
+ - vendor/libgit2/src/commit_list.h
322
+ - vendor/libgit2/src/common.h
320
323
  - vendor/libgit2/src/compress.c
321
- - vendor/libgit2/src/tsort.c
322
- - vendor/libgit2/src/blob.h
323
- - vendor/libgit2/src/refspec.c
324
- - vendor/libgit2/src/util.h
325
- - vendor/libgit2/src/oidmap.h
326
- - vendor/libgit2/src/global.h
327
- - vendor/libgit2/src/fnmatch.h
328
- - vendor/libgit2/src/global.c
329
- - vendor/libgit2/src/diff.c
324
+ - vendor/libgit2/src/compress.h
325
+ - vendor/libgit2/src/config.c
326
+ - vendor/libgit2/src/config.h
327
+ - vendor/libgit2/src/config_cache.c
328
+ - vendor/libgit2/src/config_file.c
329
+ - vendor/libgit2/src/config_file.h
330
330
  - vendor/libgit2/src/crlf.c
331
+ - vendor/libgit2/src/date.c
332
+ - vendor/libgit2/src/delta-apply.c
333
+ - vendor/libgit2/src/delta-apply.h
334
+ - vendor/libgit2/src/delta.c
335
+ - vendor/libgit2/src/delta.h
336
+ - vendor/libgit2/src/diff.c
337
+ - vendor/libgit2/src/diff.h
338
+ - vendor/libgit2/src/diff_driver.c
339
+ - vendor/libgit2/src/diff_driver.h
340
+ - vendor/libgit2/src/diff_file.c
341
+ - vendor/libgit2/src/diff_file.h
342
+ - vendor/libgit2/src/diff_patch.c
343
+ - vendor/libgit2/src/diff_patch.h
344
+ - vendor/libgit2/src/diff_print.c
345
+ - vendor/libgit2/src/diff_tform.c
346
+ - vendor/libgit2/src/diff_xdiff.c
347
+ - vendor/libgit2/src/diff_xdiff.h
348
+ - vendor/libgit2/src/errors.c
349
+ - vendor/libgit2/src/fetch.c
350
+ - vendor/libgit2/src/fetch.h
351
+ - vendor/libgit2/src/fetchhead.c
352
+ - vendor/libgit2/src/fetchhead.h
353
+ - vendor/libgit2/src/filebuf.c
354
+ - vendor/libgit2/src/filebuf.h
355
+ - vendor/libgit2/src/fileops.c
331
356
  - vendor/libgit2/src/fileops.h
357
+ - vendor/libgit2/src/filter.c
358
+ - vendor/libgit2/src/filter.h
359
+ - vendor/libgit2/src/fnmatch.c
360
+ - vendor/libgit2/src/fnmatch.h
361
+ - vendor/libgit2/src/global.c
362
+ - vendor/libgit2/src/global.h
363
+ - vendor/libgit2/src/graph.c
364
+ - vendor/libgit2/src/hash/hash_generic.c
365
+ - vendor/libgit2/src/hash/hash_generic.h
366
+ - vendor/libgit2/src/hash/hash_openssl.h
367
+ - vendor/libgit2/src/hash/hash_win32.c
368
+ - vendor/libgit2/src/hash/hash_win32.h
369
+ - vendor/libgit2/src/hash.c
370
+ - vendor/libgit2/src/hash.h
332
371
  - vendor/libgit2/src/hashsig.c
372
+ - vendor/libgit2/src/hashsig.h
373
+ - vendor/libgit2/src/ignore.c
374
+ - vendor/libgit2/src/ignore.h
375
+ - vendor/libgit2/src/index.c
376
+ - vendor/libgit2/src/index.h
377
+ - vendor/libgit2/src/indexer.c
378
+ - vendor/libgit2/src/iterator.c
379
+ - vendor/libgit2/src/iterator.h
333
380
  - vendor/libgit2/src/khash.h
334
- - vendor/libgit2/src/submodule.c
335
- - vendor/libgit2/src/diff_tform.c
381
+ - vendor/libgit2/src/map.h
382
+ - vendor/libgit2/src/merge.c
383
+ - vendor/libgit2/src/merge.h
384
+ - vendor/libgit2/src/merge_file.c
385
+ - vendor/libgit2/src/merge_file.h
386
+ - vendor/libgit2/src/message.c
387
+ - vendor/libgit2/src/message.h
388
+ - vendor/libgit2/src/mwindow.c
389
+ - vendor/libgit2/src/mwindow.h
390
+ - vendor/libgit2/src/netops.c
336
391
  - vendor/libgit2/src/netops.h
337
- - vendor/libgit2/src/commit.c
338
- - vendor/libgit2/src/posix.c
339
- - vendor/libgit2/src/buffer.h
392
+ - vendor/libgit2/src/notes.c
393
+ - vendor/libgit2/src/notes.h
340
394
  - vendor/libgit2/src/object.c
341
- - vendor/libgit2/src/path.h
342
- - vendor/libgit2/src/blob.c
343
- - vendor/libgit2/src/cache.c
344
- - vendor/libgit2/src/refspec.h
345
- - vendor/libgit2/src/strmap.h
346
- - vendor/libgit2/src/config_file.c
347
- - vendor/libgit2/src/vector.c
348
- - vendor/libgit2/src/refdb.h
349
- - vendor/libgit2/src/netops.c
350
- - vendor/libgit2/src/checkout.c
351
- - vendor/libgit2/src/fetchhead.h
395
+ - vendor/libgit2/src/object.h
396
+ - vendor/libgit2/src/object_api.c
397
+ - vendor/libgit2/src/odb.c
352
398
  - vendor/libgit2/src/odb.h
399
+ - vendor/libgit2/src/odb_loose.c
400
+ - vendor/libgit2/src/odb_pack.c
401
+ - vendor/libgit2/src/offmap.h
402
+ - vendor/libgit2/src/oid.c
403
+ - vendor/libgit2/src/oid.h
404
+ - vendor/libgit2/src/oidmap.h
405
+ - vendor/libgit2/src/pack-objects.c
406
+ - vendor/libgit2/src/pack-objects.h
353
407
  - vendor/libgit2/src/pack.c
354
- - vendor/libgit2/src/commit.h
355
- - vendor/libgit2/src/indexer.c
356
- - vendor/libgit2/src/merge.h
357
- - vendor/libgit2/src/pqueue.c
358
- - vendor/libgit2/src/repository.h
359
- - vendor/libgit2/src/mwindow.c
360
- - vendor/libgit2/src/attr_file.h
361
- - vendor/libgit2/src/signature.c
408
+ - vendor/libgit2/src/pack.h
409
+ - vendor/libgit2/src/path.c
410
+ - vendor/libgit2/src/path.h
411
+ - vendor/libgit2/src/pathspec.c
362
412
  - vendor/libgit2/src/pathspec.h
363
- - vendor/libgit2/src/tag.h
364
- - vendor/libgit2/src/sha1_lookup.h
365
- - vendor/libgit2/src/remote.h
366
- - vendor/libgit2/src/hash.c
367
- - vendor/libgit2/src/delta.c
368
- - vendor/libgit2/src/config.h
369
- - vendor/libgit2/src/refdb_fs.h
370
- - vendor/libgit2/src/message.h
371
- - vendor/libgit2/src/delta-apply.h
372
- - vendor/libgit2/src/stash.c
413
+ - vendor/libgit2/src/pool.c
414
+ - vendor/libgit2/src/pool.h
415
+ - vendor/libgit2/src/posix.c
373
416
  - vendor/libgit2/src/posix.h
374
- - vendor/libgit2/src/index.c
417
+ - vendor/libgit2/src/pqueue.c
418
+ - vendor/libgit2/src/pqueue.h
419
+ - vendor/libgit2/src/push.c
420
+ - vendor/libgit2/src/push.h
421
+ - vendor/libgit2/src/refdb.c
422
+ - vendor/libgit2/src/refdb.h
423
+ - vendor/libgit2/src/refdb_fs.c
424
+ - vendor/libgit2/src/refdb_fs.h
425
+ - vendor/libgit2/src/reflog.c
426
+ - vendor/libgit2/src/reflog.h
427
+ - vendor/libgit2/src/refs.c
428
+ - vendor/libgit2/src/refs.h
429
+ - vendor/libgit2/src/refspec.c
430
+ - vendor/libgit2/src/refspec.h
431
+ - vendor/libgit2/src/remote.c
432
+ - vendor/libgit2/src/remote.h
433
+ - vendor/libgit2/src/repo_template.h
434
+ - vendor/libgit2/src/repository.c
435
+ - vendor/libgit2/src/repository.h
436
+ - vendor/libgit2/src/reset.c
375
437
  - vendor/libgit2/src/revparse.c
438
+ - vendor/libgit2/src/revwalk.c
376
439
  - vendor/libgit2/src/revwalk.h
440
+ - vendor/libgit2/src/sha1_lookup.c
441
+ - vendor/libgit2/src/sha1_lookup.h
442
+ - vendor/libgit2/src/signature.c
443
+ - vendor/libgit2/src/signature.h
444
+ - vendor/libgit2/src/stash.c
445
+ - vendor/libgit2/src/status.c
446
+ - vendor/libgit2/src/status.h
447
+ - vendor/libgit2/src/strmap.h
448
+ - vendor/libgit2/src/submodule.c
449
+ - vendor/libgit2/src/submodule.h
450
+ - vendor/libgit2/src/tag.c
451
+ - vendor/libgit2/src/tag.h
452
+ - vendor/libgit2/src/thread-utils.c
453
+ - vendor/libgit2/src/thread-utils.h
454
+ - vendor/libgit2/src/trace.c
455
+ - vendor/libgit2/src/trace.h
456
+ - vendor/libgit2/src/transport.c
457
+ - vendor/libgit2/src/transports/cred.c
458
+ - vendor/libgit2/src/transports/cred_helpers.c
459
+ - vendor/libgit2/src/transports/git.c
460
+ - vendor/libgit2/src/transports/http.c
461
+ - vendor/libgit2/src/transports/local.c
462
+ - vendor/libgit2/src/transports/smart.c
463
+ - vendor/libgit2/src/transports/smart.h
464
+ - vendor/libgit2/src/transports/smart_pkt.c
465
+ - vendor/libgit2/src/transports/smart_protocol.c
466
+ - vendor/libgit2/src/transports/ssh.c
467
+ - vendor/libgit2/src/transports/winhttp.c
468
+ - vendor/libgit2/src/tree-cache.c
377
469
  - vendor/libgit2/src/tree-cache.h
378
- - vendor/libgit2/src/iterator.c
379
- - vendor/libgit2/src/xdiff/xinclude.h
380
- - vendor/libgit2/src/xdiff/xdiffi.h
381
- - vendor/libgit2/src/xdiff/xprepare.h
382
- - vendor/libgit2/src/xdiff/xemit.h
383
- - vendor/libgit2/src/xdiff/xutils.c
470
+ - vendor/libgit2/src/tree.c
471
+ - vendor/libgit2/src/tree.h
472
+ - vendor/libgit2/src/tsort.c
473
+ - vendor/libgit2/src/unix/map.c
474
+ - vendor/libgit2/src/unix/posix.h
475
+ - vendor/libgit2/src/unix/realpath.c
476
+ - vendor/libgit2/src/util.c
477
+ - vendor/libgit2/src/util.h
478
+ - vendor/libgit2/src/vector.c
479
+ - vendor/libgit2/src/vector.h
480
+ - vendor/libgit2/src/win32/dir.c
481
+ - vendor/libgit2/src/win32/dir.h
482
+ - vendor/libgit2/src/win32/error.c
483
+ - vendor/libgit2/src/win32/error.h
484
+ - vendor/libgit2/src/win32/findfile.c
485
+ - vendor/libgit2/src/win32/findfile.h
486
+ - vendor/libgit2/src/win32/map.c
487
+ - vendor/libgit2/src/win32/mingw-compat.h
488
+ - vendor/libgit2/src/win32/msvc-compat.h
489
+ - vendor/libgit2/src/win32/posix.h
490
+ - vendor/libgit2/src/win32/posix_w32.c
491
+ - vendor/libgit2/src/win32/precompiled.c
492
+ - vendor/libgit2/src/win32/precompiled.h
493
+ - vendor/libgit2/src/win32/pthread.c
494
+ - vendor/libgit2/src/win32/pthread.h
495
+ - vendor/libgit2/src/win32/utf-conv.c
496
+ - vendor/libgit2/src/win32/utf-conv.h
497
+ - vendor/libgit2/src/win32/version.h
384
498
  - vendor/libgit2/src/xdiff/xdiff.h
385
- - vendor/libgit2/src/xdiff/xprepare.c
386
- - vendor/libgit2/src/xdiff/xpatience.c
387
- - vendor/libgit2/src/xdiff/xmacros.h
388
- - vendor/libgit2/src/xdiff/xutils.h
389
499
  - vendor/libgit2/src/xdiff/xdiffi.c
500
+ - vendor/libgit2/src/xdiff/xdiffi.h
501
+ - vendor/libgit2/src/xdiff/xemit.c
502
+ - vendor/libgit2/src/xdiff/xemit.h
390
503
  - vendor/libgit2/src/xdiff/xhistogram.c
504
+ - vendor/libgit2/src/xdiff/xinclude.h
505
+ - vendor/libgit2/src/xdiff/xmacros.h
391
506
  - vendor/libgit2/src/xdiff/xmerge.c
507
+ - vendor/libgit2/src/xdiff/xpatience.c
508
+ - vendor/libgit2/src/xdiff/xprepare.c
509
+ - vendor/libgit2/src/xdiff/xprepare.h
392
510
  - vendor/libgit2/src/xdiff/xtypes.h
393
- - vendor/libgit2/src/xdiff/xemit.c
394
- - vendor/libgit2/src/diff.h
395
- - vendor/libgit2/src/fetchhead.c
396
- - vendor/libgit2/src/reflog.h
397
- - vendor/libgit2/src/cache.h
398
- - vendor/libgit2/src/amiga/map.c
399
- - vendor/libgit2/src/filebuf.h
400
- - vendor/libgit2/src/mwindow.h
401
- - vendor/libgit2/src/push.h
402
- - vendor/libgit2/src/notes.h
403
- - vendor/libgit2/src/pool.h
404
- - vendor/libgit2/src/util.c
405
- - vendor/libgit2/src/buf_text.h
406
- - vendor/libgit2/src/merge.c
407
- - vendor/libgit2/src/reset.c
408
- - vendor/libgit2/src/errors.c
409
- - vendor/libgit2/src/buffer.c
410
- - vendor/libgit2/src/bswap.h
411
- - vendor/libgit2/src/pool.c
412
- - vendor/libgit2/deps/zlib/zutil.h
413
- - vendor/libgit2/deps/zlib/crc32.c
414
- - vendor/libgit2/deps/zlib/inflate.h
415
- - vendor/libgit2/deps/zlib/inffast.h
511
+ - vendor/libgit2/src/xdiff/xutils.c
512
+ - vendor/libgit2/src/xdiff/xutils.h
513
+ - vendor/libgit2/deps/http-parser/http_parser.c
514
+ - vendor/libgit2/deps/http-parser/http_parser.h
515
+ - vendor/libgit2/deps/regex/config.h
516
+ - vendor/libgit2/deps/regex/regcomp.c
517
+ - vendor/libgit2/deps/regex/regex.c
518
+ - vendor/libgit2/deps/regex/regex.h
519
+ - vendor/libgit2/deps/regex/regex_internal.c
520
+ - vendor/libgit2/deps/regex/regex_internal.h
521
+ - vendor/libgit2/deps/regex/regexec.c
416
522
  - vendor/libgit2/deps/zlib/adler32.c
417
- - vendor/libgit2/deps/zlib/zlib.h
418
- - vendor/libgit2/deps/zlib/inffast.c
419
- - vendor/libgit2/deps/zlib/zutil.c
523
+ - vendor/libgit2/deps/zlib/crc32.c
420
524
  - vendor/libgit2/deps/zlib/crc32.h
421
- - vendor/libgit2/deps/zlib/trees.h
525
+ - vendor/libgit2/deps/zlib/deflate.c
422
526
  - vendor/libgit2/deps/zlib/deflate.h
527
+ - vendor/libgit2/deps/zlib/inffast.c
528
+ - vendor/libgit2/deps/zlib/inffast.h
529
+ - vendor/libgit2/deps/zlib/inffixed.h
530
+ - vendor/libgit2/deps/zlib/inflate.c
531
+ - vendor/libgit2/deps/zlib/inflate.h
423
532
  - vendor/libgit2/deps/zlib/inftrees.c
424
533
  - vendor/libgit2/deps/zlib/inftrees.h
425
534
  - vendor/libgit2/deps/zlib/trees.c
426
- - vendor/libgit2/deps/zlib/inflate.c
427
- - vendor/libgit2/deps/zlib/inffixed.h
428
- - vendor/libgit2/deps/zlib/deflate.c
535
+ - vendor/libgit2/deps/zlib/trees.h
429
536
  - vendor/libgit2/deps/zlib/zconf.h
430
- - vendor/libgit2/deps/regex/regex.h
431
- - vendor/libgit2/deps/regex/regex.c
432
- - vendor/libgit2/deps/regex/regex_internal.h
433
- - vendor/libgit2/deps/regex/regex_internal.c
434
- - vendor/libgit2/deps/regex/regcomp.c
435
- - vendor/libgit2/deps/regex/config.h
436
- - vendor/libgit2/deps/regex/regexec.c
437
- - vendor/libgit2/deps/http-parser/http_parser.c
438
- - vendor/libgit2/deps/http-parser/http_parser.h
537
+ - vendor/libgit2/deps/zlib/zlib.h
538
+ - vendor/libgit2/deps/zlib/zutil.c
539
+ - vendor/libgit2/deps/zlib/zutil.h
439
540
  - vendor/libgit2/Makefile.embed
440
541
  - ext/rugged/extconf.rb
441
542
  homepage: http://github.com/libgit2/rugged
@@ -453,9 +554,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
453
554
  required_rubygems_version: !ruby/object:Gem::Requirement
454
555
  none: false
455
556
  requirements:
456
- - - ! '>'
557
+ - - ! '>='
457
558
  - !ruby/object:Gem::Version
458
- version: 1.3.1
559
+ version: '0'
459
560
  requirements: []
460
561
  rubyforge_project:
461
562
  rubygems_version: 1.8.23