rugged 0.24.0b13 → 0.24.0b14

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.
Files changed (61) hide show
  1. data/ext/rugged/rugged_commit.c +6 -6
  2. data/ext/rugged/rugged_revwalk.c +7 -3
  3. data/ext/rugged/rugged_settings.c +5 -0
  4. data/lib/rugged/tag.rb +1 -1
  5. data/lib/rugged/version.rb +1 -1
  6. data/vendor/libgit2/CMakeLists.txt +21 -8
  7. data/vendor/libgit2/include/git2/commit.h +6 -0
  8. data/vendor/libgit2/include/git2/common.h +15 -0
  9. data/vendor/libgit2/include/git2/errors.h +0 -5
  10. data/vendor/libgit2/include/git2/rebase.h +1 -1
  11. data/vendor/libgit2/include/git2/sys/filter.h +34 -25
  12. data/vendor/libgit2/include/git2/sys/index.h +1 -1
  13. data/vendor/libgit2/src/checkout.c +1 -1
  14. data/vendor/libgit2/src/commit.c +44 -12
  15. data/vendor/libgit2/src/common.h +11 -0
  16. data/vendor/libgit2/src/crlf.c +1 -1
  17. data/vendor/libgit2/src/diff_print.c +5 -1
  18. data/vendor/libgit2/src/diff_tform.c +16 -11
  19. data/vendor/libgit2/src/fileops.c +8 -15
  20. data/vendor/libgit2/src/filter.c +155 -124
  21. data/vendor/libgit2/src/filter.h +2 -0
  22. data/vendor/libgit2/src/global.c +56 -162
  23. data/vendor/libgit2/src/index.c +68 -30
  24. data/vendor/libgit2/src/index.h +1 -1
  25. data/vendor/libgit2/src/iterator.c +9 -3
  26. data/vendor/libgit2/src/netops.c +4 -0
  27. data/vendor/libgit2/src/object.c +26 -0
  28. data/vendor/libgit2/src/object.h +23 -0
  29. data/vendor/libgit2/src/openssl_stream.c +135 -3
  30. data/vendor/libgit2/src/openssl_stream.h +2 -0
  31. data/vendor/libgit2/src/pack-objects.c +6 -6
  32. data/vendor/libgit2/src/pack.c +18 -1
  33. data/vendor/libgit2/src/path.c +7 -3
  34. data/vendor/libgit2/src/path.h +14 -4
  35. data/vendor/libgit2/src/pool.c +78 -30
  36. data/vendor/libgit2/src/pool.h +28 -0
  37. data/vendor/libgit2/src/posix.c +5 -2
  38. data/vendor/libgit2/src/rebase.c +12 -10
  39. data/vendor/libgit2/src/refdb_fs.c +3 -4
  40. data/vendor/libgit2/src/refs.c +1 -7
  41. data/vendor/libgit2/src/refspec.c +4 -4
  42. data/vendor/libgit2/src/remote.c +2 -2
  43. data/vendor/libgit2/src/revwalk.c +1 -2
  44. data/vendor/libgit2/src/settings.c +9 -0
  45. data/vendor/libgit2/src/signature.c +2 -3
  46. data/vendor/libgit2/src/submodule.c +2 -2
  47. data/vendor/libgit2/src/thread-utils.h +1 -1
  48. data/vendor/libgit2/src/transports/smart_pkt.c +15 -9
  49. data/vendor/libgit2/src/transports/smart_protocol.c +2 -0
  50. data/vendor/libgit2/src/transports/winhttp.c +1 -1
  51. data/vendor/libgit2/src/tree.c +31 -10
  52. data/vendor/libgit2/src/unix/map.c +1 -1
  53. data/vendor/libgit2/src/unix/posix.h +15 -1
  54. data/vendor/libgit2/src/win32/posix.h +6 -4
  55. data/vendor/libgit2/src/win32/posix_w32.c +18 -2
  56. data/vendor/libgit2/src/win32/utf-conv.c +3 -18
  57. data/vendor/libgit2/src/win32/w32_util.h +44 -11
  58. data/vendor/libgit2/src/win32/win32-compat.h +10 -0
  59. data/vendor/libgit2/src/xdiff/xmerge.c +2 -0
  60. metadata +416 -405
  61. checksums.yaml +0 -7
@@ -108,6 +108,7 @@ static int append_symref(const char **out, git_vector *symrefs, const char *ptr)
108
108
  if (giterr_last()->klass != GITERR_NOMEMORY)
109
109
  goto on_invalid;
110
110
 
111
+ git__free(mapping);
111
112
  return error;
112
113
  }
113
114
 
@@ -120,6 +121,7 @@ static int append_symref(const char **out, git_vector *symrefs, const char *ptr)
120
121
  on_invalid:
121
122
  giterr_set(GITERR_NET, "remote sent invalid symref");
122
123
  git_refspec__free(mapping);
124
+ git__free(mapping);
123
125
  return -1;
124
126
  }
125
127
 
@@ -283,7 +283,7 @@ static int winhttp_stream_connect(winhttp_stream *s)
283
283
  unsigned long disable_redirects = WINHTTP_DISABLE_REDIRECTS;
284
284
  int default_timeout = TIMEOUT_INFINITE;
285
285
  int default_connect_timeout = DEFAULT_CONNECT_TIMEOUT;
286
- int i;
286
+ size_t i;
287
287
 
288
288
  /* Prepare URL */
289
289
  git_buf_printf(&buf, "%s%s", t->connection_data.path, s->service_url);
@@ -17,6 +17,9 @@
17
17
  #define DEFAULT_TREE_SIZE 16
18
18
  #define MAX_FILEMODE_BYTES 6
19
19
 
20
+ #define TREE_ENTRY_CHECK_NAMELEN(n) \
21
+ if (n > UINT16_MAX) { giterr_set(GITERR_INVALID, "tree entry path too long"); }
22
+
20
23
  GIT__USE_STRMAP
21
24
 
22
25
  static bool valid_filemode(const int filemode)
@@ -89,10 +92,7 @@ static git_tree_entry *alloc_entry_base(git_pool *pool, const char *filename, si
89
92
  git_tree_entry *entry = NULL;
90
93
  size_t tree_len;
91
94
 
92
- if (filename_len > UINT16_MAX) {
93
- giterr_set(GITERR_INVALID, "tree entry is over UINT16_MAX in length");
94
- return NULL;
95
- }
95
+ TREE_ENTRY_CHECK_NAMELEN(filename_len);
96
96
 
97
97
  if (GIT_ADD_SIZET_OVERFLOW(&tree_len, sizeof(git_tree_entry), filename_len) ||
98
98
  GIT_ADD_SIZET_OVERFLOW(&tree_len, tree_len, 1))
@@ -106,7 +106,7 @@ static git_tree_entry *alloc_entry_base(git_pool *pool, const char *filename, si
106
106
  memset(entry, 0x0, sizeof(git_tree_entry));
107
107
  memcpy(entry->filename, filename, filename_len);
108
108
  entry->filename[filename_len] = 0;
109
- entry->filename_len = filename_len;
109
+ entry->filename_len = (uint16_t)filename_len;
110
110
 
111
111
  return entry;
112
112
  }
@@ -143,8 +143,8 @@ static int homing_search_cmp(const void *key, const void *array_member)
143
143
  const struct tree_key_search *ksearch = key;
144
144
  const git_tree_entry *entry = array_member;
145
145
 
146
- const size_t len1 = ksearch->filename_len;
147
- const size_t len2 = entry->filename_len;
146
+ const uint16_t len1 = ksearch->filename_len;
147
+ const uint16_t len2 = entry->filename_len;
148
148
 
149
149
  return memcmp(
150
150
  ksearch->filename,
@@ -180,8 +180,10 @@ static int tree_key_search(
180
180
  const git_tree_entry *entry;
181
181
  size_t homing, i;
182
182
 
183
+ TREE_ENTRY_CHECK_NAMELEN(filename_len);
184
+
183
185
  ksearch.filename = filename;
184
- ksearch.filename_len = filename_len;
186
+ ksearch.filename_len = (uint16_t)filename_len;
185
187
 
186
188
  /* Initial homing search; find an entry on the tree with
187
189
  * the same prefix as the filename we're looking for */
@@ -334,6 +336,7 @@ const git_tree_entry *git_tree_entry_byname(
334
336
  const git_tree *tree, const char *filename)
335
337
  {
336
338
  assert(tree && filename);
339
+
337
340
  return entry_fromname(tree, filename, strlen(filename));
338
341
  }
339
342
 
@@ -364,13 +367,16 @@ int git_tree__prefix_position(const git_tree *tree, const char *path)
364
367
  {
365
368
  const git_vector *entries = &tree->entries;
366
369
  struct tree_key_search ksearch;
367
- size_t at_pos;
370
+ size_t at_pos, path_len;
368
371
 
369
372
  if (!path)
370
373
  return 0;
371
374
 
375
+ path_len = strlen(path);
376
+ TREE_ENTRY_CHECK_NAMELEN(path_len);
377
+
372
378
  ksearch.filename = path;
373
- ksearch.filename_len = strlen(path);
379
+ ksearch.filename_len = (uint16_t)path_len;
374
380
 
375
381
  /* be safe when we cast away constness - i.e. don't trigger a sort */
376
382
  assert(git_vector_is_sorted(&tree->entries));
@@ -720,6 +726,18 @@ on_error:
720
726
  return -1;
721
727
  }
722
728
 
729
+ static git_otype otype_from_mode(git_filemode_t filemode)
730
+ {
731
+ switch (filemode) {
732
+ case GIT_FILEMODE_TREE:
733
+ return GIT_OBJ_TREE;
734
+ case GIT_FILEMODE_COMMIT:
735
+ return GIT_OBJ_COMMIT;
736
+ default:
737
+ return GIT_OBJ_BLOB;
738
+ }
739
+ }
740
+
723
741
  int git_treebuilder_insert(
724
742
  const git_tree_entry **entry_out,
725
743
  git_treebuilder *bld,
@@ -739,6 +757,9 @@ int git_treebuilder_insert(
739
757
  if (!valid_entry_name(bld->repo, filename))
740
758
  return tree_error("Failed to insert entry. Invalid name for a tree entry", filename);
741
759
 
760
+ if (!git_object__is_valid(bld->repo, id, otype_from_mode(filemode)))
761
+ return tree_error("Failed to insert entry; invalid object specified", filename);
762
+
742
763
  pos = git_strmap_lookup_index(bld->map, filename);
743
764
  if (git_strmap_valid_index(bld->map, pos)) {
744
765
  entry = git_strmap_value_at(bld->map, pos);
@@ -17,7 +17,7 @@ int git__page_size(size_t *page_size)
17
17
  {
18
18
  long sc_page_size = sysconf(_SC_PAGE_SIZE);
19
19
  if (sc_page_size < 0) {
20
- giterr_set_str(GITERR_OS, "Can't determine system page size");
20
+ giterr_set(GITERR_OS, "can't determine system page size");
21
21
  return -1;
22
22
  }
23
23
  *page_size = (size_t) sc_page_size;
@@ -21,6 +21,18 @@ typedef int GIT_SOCKET;
21
21
  #define p_lstat(p,b) lstat(p,b)
22
22
  #define p_stat(p,b) stat(p, b)
23
23
 
24
+ #if defined(GIT_USE_STAT_MTIMESPEC)
25
+ # define st_atime_nsec st_atimespec.tv_nsec
26
+ # define st_mtime_nsec st_mtimespec.tv_nsec
27
+ # define st_ctime_nsec st_ctimespec.tv_nsec
28
+ #elif defined(GIT_USE_STAT_MTIM)
29
+ # define st_atime_nsec st_atim.tv_nsec
30
+ # define st_mtime_nsec st_mtim.tv_nsec
31
+ # define st_ctime_nsec st_ctim.tv_nsec
32
+ #elif !defined(GIT_USE_STAT_MTIME_NSEC) && defined(GIT_USE_NEC)
33
+ # error GIT_USE_NSEC defined but unknown struct stat nanosecond type
34
+ #endif
35
+
24
36
  #define p_utimes(f, t) utimes(f, t)
25
37
 
26
38
  #define p_readlink(a, b, c) readlink(a, b, c)
@@ -52,8 +64,10 @@ extern char *p_realpath(const char *, char *);
52
64
  #define p_localtime_r(c, r) localtime_r(c, r)
53
65
  #define p_gmtime_r(c, r) gmtime_r(c, r)
54
66
 
67
+ #define p_timeval timeval
68
+
55
69
  #ifdef HAVE_FUTIMENS
56
- GIT_INLINE(int) p_futimes(int f, const struct timeval t[2])
70
+ GIT_INLINE(int) p_futimes(int f, const struct p_timeval t[2])
57
71
  {
58
72
  struct timespec s[2];
59
73
  s[0].tv_sec = t[0].tv_sec;
@@ -9,6 +9,7 @@
9
9
 
10
10
  #include "common.h"
11
11
  #include "../posix.h"
12
+ #include "win32-compat.h"
12
13
  #include "path_w32.h"
13
14
  #include "utf-conv.h"
14
15
  #include "dir.h"
@@ -16,12 +17,13 @@
16
17
  typedef SOCKET GIT_SOCKET;
17
18
 
18
19
  #define p_lseek(f,n,w) _lseeki64(f, n, w)
19
- #define p_fstat(f,b) _fstat64(f, b)
20
+
21
+ extern int p_fstat(int fd, struct stat *buf);
20
22
  extern int p_lstat(const char *file_name, struct stat *buf);
21
- extern int p_stat(const char* path, struct stat* buf);
23
+ extern int p_stat(const char* path, struct stat *buf);
22
24
 
23
- extern int p_utimes(const char *filename, const struct timeval times[2]);
24
- extern int p_futimes(int fd, const struct timeval times[2]);
25
+ extern int p_utimes(const char *filename, const struct p_timeval times[2]);
26
+ extern int p_futimes(int fd, const struct p_timeval times[2]);
25
27
 
26
28
  extern int p_readlink(const char *path, char *buf, size_t bufsiz);
27
29
  extern int p_symlink(const char *old, const char *new);
@@ -210,7 +210,7 @@ int p_lstat_posixly(const char *filename, struct stat *buf)
210
210
  return do_lstat(filename, buf, true);
211
211
  }
212
212
 
213
- int p_utimes(const char *filename, const struct timeval times[2])
213
+ int p_utimes(const char *filename, const struct p_timeval times[2])
214
214
  {
215
215
  int fd, error;
216
216
 
@@ -223,7 +223,7 @@ int p_utimes(const char *filename, const struct timeval times[2])
223
223
  return error;
224
224
  }
225
225
 
226
- int p_futimes(int fd, const struct timeval times[2])
226
+ int p_futimes(int fd, const struct p_timeval times[2])
227
227
  {
228
228
  HANDLE handle;
229
229
  FILETIME atime = {0}, mtime = {0};
@@ -398,6 +398,22 @@ static int follow_and_lstat_link(git_win32_path path, struct stat* buf)
398
398
  return lstat_w(target_w, buf, false);
399
399
  }
400
400
 
401
+ int p_fstat(int fd, struct stat *buf)
402
+ {
403
+ BY_HANDLE_FILE_INFORMATION fhInfo;
404
+
405
+ HANDLE fh = (HANDLE)_get_osfhandle(fd);
406
+
407
+ if (fh == INVALID_HANDLE_VALUE ||
408
+ !GetFileInformationByHandle(fh, &fhInfo)) {
409
+ errno = EBADF;
410
+ return -1;
411
+ }
412
+
413
+ git_win32__file_information_to_stat(buf, &fhInfo);
414
+ return 0;
415
+ }
416
+
401
417
  int p_stat(const char* path, struct stat* buf)
402
418
  {
403
419
  git_win32_path path_w;
@@ -8,20 +8,6 @@
8
8
  #include "common.h"
9
9
  #include "utf-conv.h"
10
10
 
11
- GIT_INLINE(DWORD) get_wc_flags(void)
12
- {
13
- static char inited = 0;
14
- static DWORD flags;
15
-
16
- /* Invalid code point check supported on Vista+ only */
17
- if (!inited) {
18
- flags = git_has_win32_version(6, 0, 0) ? WC_ERR_INVALID_CHARS : 0;
19
- inited = 1;
20
- }
21
-
22
- return flags;
23
- }
24
-
25
11
  GIT_INLINE(void) git__set_errno(void)
26
12
  {
27
13
  if (GetLastError() == ERROR_INSUFFICIENT_BUFFER)
@@ -66,7 +52,7 @@ int git__utf16_to_8(char *dest, size_t dest_size, const wchar_t *src)
66
52
  /* Length of -1 indicates NULL termination of the input string. Subtract 1 from the result to
67
53
  * turn 0 into -1 (an error code) and to not count the NULL terminator as part of the string's
68
54
  * length. WideCharToMultiByte never returns int's minvalue, so underflow is not possible */
69
- if ((len = WideCharToMultiByte(CP_UTF8, get_wc_flags(), src, -1, dest, (int)dest_size, NULL, NULL) - 1) < 0)
55
+ if ((len = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, src, -1, dest, (int)dest_size, NULL, NULL) - 1) < 0)
70
56
  git__set_errno();
71
57
 
72
58
  return len;
@@ -127,12 +113,11 @@ int git__utf8_to_16_alloc(wchar_t **dest, const char *src)
127
113
  int git__utf16_to_8_alloc(char **dest, const wchar_t *src)
128
114
  {
129
115
  int utf8_size;
130
- DWORD dwFlags = get_wc_flags();
131
116
 
132
117
  *dest = NULL;
133
118
 
134
119
  /* Length of -1 indicates NULL termination of the input string */
135
- utf8_size = WideCharToMultiByte(CP_UTF8, dwFlags, src, -1, NULL, 0, NULL, NULL);
120
+ utf8_size = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, src, -1, NULL, 0, NULL, NULL);
136
121
 
137
122
  if (!utf8_size) {
138
123
  git__set_errno();
@@ -146,7 +131,7 @@ int git__utf16_to_8_alloc(char **dest, const wchar_t *src)
146
131
  return -1;
147
132
  }
148
133
 
149
- utf8_size = WideCharToMultiByte(CP_UTF8, dwFlags, src, -1, *dest, utf8_size, NULL, NULL);
134
+ utf8_size = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, src, -1, *dest, utf8_size, NULL, NULL);
150
135
 
151
136
  if (!utf8_size) {
152
137
  git__set_errno();
@@ -96,7 +96,7 @@ GIT_INLINE(void) git_win32__filetime_to_timespec(
96
96
  }
97
97
 
98
98
  GIT_INLINE(void) git_win32__timeval_to_filetime(
99
- FILETIME *ft, const struct timeval tv)
99
+ FILETIME *ft, const struct p_timeval tv)
100
100
  {
101
101
  long long ticks = (tv.tv_sec * 10000000LL) +
102
102
  (tv.tv_usec * 10LL) + 116444736000000000LL;
@@ -105,19 +105,25 @@ GIT_INLINE(void) git_win32__timeval_to_filetime(
105
105
  ft->dwLowDateTime = (ticks & 0xffffffffLL);
106
106
  }
107
107
 
108
- GIT_INLINE(int) git_win32__file_attribute_to_stat(
108
+ GIT_INLINE(void) git_win32__stat_init(
109
109
  struct stat *st,
110
- const WIN32_FILE_ATTRIBUTE_DATA *attrdata,
111
- const wchar_t *path)
110
+ DWORD dwFileAttributes,
111
+ DWORD nFileSizeHigh,
112
+ DWORD nFileSizeLow,
113
+ FILETIME ftCreationTime,
114
+ FILETIME ftLastAccessTime,
115
+ FILETIME ftLastWriteTime)
112
116
  {
113
117
  mode_t mode = S_IREAD;
114
118
 
115
- if (attrdata->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
119
+ memset(st, 0, sizeof(struct stat));
120
+
121
+ if (dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
116
122
  mode |= S_IFDIR;
117
123
  else
118
124
  mode |= S_IFREG;
119
125
 
120
- if ((attrdata->dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0)
126
+ if ((dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0)
121
127
  mode |= S_IWRITE;
122
128
 
123
129
  st->st_ino = 0;
@@ -125,12 +131,39 @@ GIT_INLINE(int) git_win32__file_attribute_to_stat(
125
131
  st->st_uid = 0;
126
132
  st->st_nlink = 1;
127
133
  st->st_mode = mode;
128
- st->st_size = ((git_off_t)attrdata->nFileSizeHigh << 32) + attrdata->nFileSizeLow;
134
+ st->st_size = ((git_off_t)nFileSizeHigh << 32) + nFileSizeLow;
129
135
  st->st_dev = _getdrive() - 1;
130
136
  st->st_rdev = st->st_dev;
131
- git_win32__filetime_to_timespec(&(attrdata->ftLastAccessTime), &(st->st_atim));
132
- git_win32__filetime_to_timespec(&(attrdata->ftLastWriteTime), &(st->st_mtim));
133
- git_win32__filetime_to_timespec(&(attrdata->ftCreationTime), &(st->st_ctim));
137
+ git_win32__filetime_to_timespec(&ftLastAccessTime, &(st->st_atim));
138
+ git_win32__filetime_to_timespec(&ftLastWriteTime, &(st->st_mtim));
139
+ git_win32__filetime_to_timespec(&ftCreationTime, &(st->st_ctim));
140
+ }
141
+
142
+ GIT_INLINE(void) git_win32__file_information_to_stat(
143
+ struct stat *st,
144
+ const BY_HANDLE_FILE_INFORMATION *fileinfo)
145
+ {
146
+ git_win32__stat_init(st,
147
+ fileinfo->dwFileAttributes,
148
+ fileinfo->nFileSizeHigh,
149
+ fileinfo->nFileSizeLow,
150
+ fileinfo->ftCreationTime,
151
+ fileinfo->ftLastAccessTime,
152
+ fileinfo->ftLastWriteTime);
153
+ }
154
+
155
+ GIT_INLINE(int) git_win32__file_attribute_to_stat(
156
+ struct stat *st,
157
+ const WIN32_FILE_ATTRIBUTE_DATA *attrdata,
158
+ const wchar_t *path)
159
+ {
160
+ git_win32__stat_init(st,
161
+ attrdata->dwFileAttributes,
162
+ attrdata->nFileSizeHigh,
163
+ attrdata->nFileSizeLow,
164
+ attrdata->ftCreationTime,
165
+ attrdata->ftLastAccessTime,
166
+ attrdata->ftLastWriteTime);
134
167
 
135
168
  if (attrdata->dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT && path) {
136
169
  git_win32_path target;
@@ -139,7 +172,7 @@ GIT_INLINE(int) git_win32__file_attribute_to_stat(
139
172
  st->st_mode = (st->st_mode & ~S_IFMT) | S_IFLNK;
140
173
 
141
174
  /* st_size gets the UTF-8 length of the target name, in bytes,
142
- * not counting the NULL terminator */
175
+ * not counting the NULL terminator */
143
176
  if ((st->st_size = git__utf16_to_8(NULL, 0, target)) < 0) {
144
177
  giterr_set(GITERR_OS, "Could not convert reparse point name for '%s'", path);
145
178
  return -1;
@@ -13,6 +13,13 @@
13
13
  #include <sys/stat.h>
14
14
  #include <sys/types.h>
15
15
 
16
+ typedef long suseconds_t;
17
+
18
+ struct p_timeval {
19
+ time_t tv_sec;
20
+ suseconds_t tv_usec;
21
+ };
22
+
16
23
  struct p_timespec {
17
24
  time_t tv_sec;
18
25
  long tv_nsec;
@@ -35,6 +42,9 @@ struct p_stat {
35
42
  #define st_atime st_atim.tv_sec
36
43
  #define st_mtime st_mtim.tv_sec
37
44
  #define st_ctime st_ctim.tv_sec
45
+ #define st_atime_nsec st_atim.tv_nsec
46
+ #define st_mtime_nsec st_mtim.tv_nsec
47
+ #define st_ctime_nsec st_ctim.tv_nsec
38
48
  };
39
49
 
40
50
  #define stat p_stat
@@ -646,6 +646,8 @@ int xdl_merge(mmfile_t *orig, mmfile_t *mf1, mmfile_t *mf2,
646
646
  if (xdl_change_compact(&xe2.xdf1, &xe2.xdf2, xpp->flags) < 0 ||
647
647
  xdl_change_compact(&xe2.xdf2, &xe2.xdf1, xpp->flags) < 0 ||
648
648
  xdl_build_script(&xe2, &xscr2) < 0) {
649
+ xdl_free_script(xscr1);
650
+ xdl_free_env(&xe1);
649
651
  xdl_free_env(&xe2);
650
652
  return -1;
651
653
  }
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rugged
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0b13
4
+ version: 0.24.0b14
5
+ prerelease: 6
5
6
  platform: ruby
6
7
  authors:
7
8
  - Scott Chacon
@@ -9,530 +10,540 @@ authors:
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2016-02-16 00:00:00.000000000 Z
13
+ date: 2016-03-02 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: rake-compiler
16
17
  requirement: !ruby/object:Gem::Requirement
18
+ none: false
17
19
  requirements:
18
- - - ">="
20
+ - - ! '>='
19
21
  - !ruby/object:Gem::Version
20
22
  version: 0.9.0
21
23
  type: :development
22
24
  prerelease: false
23
25
  version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
24
27
  requirements:
25
- - - ">="
28
+ - - ! '>='
26
29
  - !ruby/object:Gem::Version
27
30
  version: 0.9.0
28
31
  - !ruby/object:Gem::Dependency
29
32
  name: pry
30
33
  requirement: !ruby/object:Gem::Requirement
34
+ none: false
31
35
  requirements:
32
- - - ">="
36
+ - - ! '>='
33
37
  - !ruby/object:Gem::Version
34
38
  version: '0'
35
39
  type: :development
36
40
  prerelease: false
37
41
  version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
38
43
  requirements:
39
- - - ">="
44
+ - - ! '>='
40
45
  - !ruby/object:Gem::Version
41
46
  version: '0'
42
47
  - !ruby/object:Gem::Dependency
43
48
  name: minitest
44
49
  requirement: !ruby/object:Gem::Requirement
50
+ none: false
45
51
  requirements:
46
- - - "~>"
52
+ - - ~>
47
53
  - !ruby/object:Gem::Version
48
54
  version: '3.0'
49
55
  type: :development
50
56
  prerelease: false
51
57
  version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
52
59
  requirements:
53
- - - "~>"
60
+ - - ~>
54
61
  - !ruby/object:Gem::Version
55
62
  version: '3.0'
56
- description: |
57
- Rugged is a Ruby bindings to the libgit2 linkable C Git library. This is
63
+ description: ! 'Rugged is a Ruby bindings to the libgit2 linkable C Git library. This
64
+ is
65
+
58
66
  for testing and using the libgit2 library in a language that is awesome.
67
+
68
+ '
59
69
  email: schacon@gmail.com
60
70
  executables: []
61
71
  extensions:
62
72
  - ext/rugged/extconf.rb
63
73
  extra_rdoc_files: []
64
74
  files:
65
- - LICENSE
66
75
  - README.md
67
- - ext/rugged/extconf.rb
68
- - ext/rugged/rugged.c
69
- - ext/rugged/rugged.h
76
+ - LICENSE
77
+ - lib/rugged/repository.rb
78
+ - lib/rugged/diff/delta.rb
79
+ - lib/rugged/diff/hunk.rb
80
+ - lib/rugged/diff/line.rb
81
+ - lib/rugged/credentials.rb
82
+ - lib/rugged/index.rb
83
+ - lib/rugged/submodule_collection.rb
84
+ - lib/rugged/reference.rb
85
+ - lib/rugged/tree.rb
86
+ - lib/rugged/blob.rb
87
+ - lib/rugged/commit.rb
88
+ - lib/rugged/diff.rb
89
+ - lib/rugged/walker.rb
90
+ - lib/rugged/remote.rb
91
+ - lib/rugged/object.rb
92
+ - lib/rugged/attributes.rb
93
+ - lib/rugged/console.rb
94
+ - lib/rugged/version.rb
95
+ - lib/rugged/tag.rb
96
+ - lib/rugged/patch.rb
97
+ - lib/rugged/branch.rb
98
+ - lib/rugged.rb
99
+ - ext/rugged/rugged_note.c
100
+ - ext/rugged/rugged_index.c
101
+ - ext/rugged/rugged_diff_line.c
102
+ - ext/rugged/rugged_branch.c
103
+ - ext/rugged/rugged_patch.c
104
+ - ext/rugged/rugged_repo.c
105
+ - ext/rugged/rugged_tag.c
70
106
  - ext/rugged/rugged_backend.c
71
- - ext/rugged/rugged_blame.c
72
107
  - ext/rugged/rugged_blob.c
73
- - ext/rugged/rugged_branch.c
74
- - ext/rugged/rugged_branch_collection.c
75
- - ext/rugged/rugged_commit.c
76
- - ext/rugged/rugged_config.c
77
- - ext/rugged/rugged_cred.c
78
108
  - ext/rugged/rugged_diff.c
79
- - ext/rugged/rugged_diff_delta.c
80
- - ext/rugged/rugged_diff_hunk.c
81
- - ext/rugged/rugged_diff_line.c
82
- - ext/rugged/rugged_index.c
83
- - ext/rugged/rugged_note.c
84
- - ext/rugged/rugged_object.c
85
- - ext/rugged/rugged_patch.c
86
- - ext/rugged/rugged_rebase.c
87
- - ext/rugged/rugged_reference.c
88
- - ext/rugged/rugged_reference_collection.c
89
109
  - ext/rugged/rugged_remote.c
90
- - ext/rugged/rugged_remote_collection.c
91
- - ext/rugged/rugged_repo.c
110
+ - ext/rugged/rugged_object.c
111
+ - ext/rugged/rugged_signature.c
92
112
  - ext/rugged/rugged_revwalk.c
93
113
  - ext/rugged/rugged_settings.c
94
- - ext/rugged/rugged_signature.c
95
- - ext/rugged/rugged_submodule.c
96
- - ext/rugged/rugged_submodule_collection.c
97
- - ext/rugged/rugged_tag.c
114
+ - ext/rugged/rugged_diff_hunk.c
98
115
  - ext/rugged/rugged_tag_collection.c
116
+ - ext/rugged/rugged_remote_collection.c
117
+ - ext/rugged/rugged_reference.c
118
+ - ext/rugged/rugged_blame.c
119
+ - ext/rugged/rugged.c
120
+ - ext/rugged/rugged_submodule_collection.c
121
+ - ext/rugged/rugged_reference_collection.c
122
+ - ext/rugged/rugged_diff_delta.c
123
+ - ext/rugged/rugged.h
124
+ - ext/rugged/rugged_commit.c
125
+ - ext/rugged/rugged_cred.c
126
+ - ext/rugged/rugged_rebase.c
127
+ - ext/rugged/rugged_submodule.c
128
+ - ext/rugged/rugged_config.c
99
129
  - ext/rugged/rugged_tree.c
100
- - lib/rugged.rb
101
- - lib/rugged/attributes.rb
102
- - lib/rugged/blob.rb
103
- - lib/rugged/branch.rb
104
- - lib/rugged/commit.rb
105
- - lib/rugged/console.rb
106
- - lib/rugged/credentials.rb
107
- - lib/rugged/diff.rb
108
- - lib/rugged/diff/delta.rb
109
- - lib/rugged/diff/hunk.rb
110
- - lib/rugged/diff/line.rb
111
- - lib/rugged/index.rb
112
- - lib/rugged/object.rb
113
- - lib/rugged/patch.rb
114
- - lib/rugged/reference.rb
115
- - lib/rugged/remote.rb
116
- - lib/rugged/repository.rb
117
- - lib/rugged/submodule_collection.rb
118
- - lib/rugged/tag.rb
119
- - lib/rugged/tree.rb
120
- - lib/rugged/version.rb
121
- - lib/rugged/walker.rb
122
- - vendor/libgit2/AUTHORS
123
- - vendor/libgit2/CMakeLists.txt
124
- - vendor/libgit2/COPYING
125
- - vendor/libgit2/Makefile.embed
126
- - vendor/libgit2/cmake/Modules/AddCFlagIfSupported.cmake
130
+ - ext/rugged/rugged_branch_collection.c
127
131
  - vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake
132
+ - vendor/libgit2/cmake/Modules/AddCFlagIfSupported.cmake
133
+ - vendor/libgit2/cmake/Modules/FindSecurity.cmake
128
134
  - vendor/libgit2/cmake/Modules/FindGSSAPI.cmake
129
- - vendor/libgit2/cmake/Modules/FindHTTP_Parser.cmake
130
135
  - vendor/libgit2/cmake/Modules/FindIconv.cmake
131
- - vendor/libgit2/cmake/Modules/FindSecurity.cmake
132
- - vendor/libgit2/deps/http-parser/LICENSE-MIT
133
- - vendor/libgit2/deps/http-parser/http_parser.c
134
- - vendor/libgit2/deps/http-parser/http_parser.h
135
- - vendor/libgit2/deps/regex/config.h
136
- - vendor/libgit2/deps/regex/regcomp.c
137
- - vendor/libgit2/deps/regex/regex.c
138
- - vendor/libgit2/deps/regex/regex.h
139
- - vendor/libgit2/deps/regex/regex_internal.c
140
- - vendor/libgit2/deps/regex/regex_internal.h
141
- - vendor/libgit2/deps/regex/regexec.c
142
- - vendor/libgit2/deps/winhttp/urlmon.h
143
- - vendor/libgit2/deps/winhttp/winhttp.def
144
- - vendor/libgit2/deps/winhttp/winhttp.h
145
- - vendor/libgit2/deps/winhttp/winhttp64.def
146
- - vendor/libgit2/deps/zlib/adler32.c
147
- - vendor/libgit2/deps/zlib/crc32.c
148
- - vendor/libgit2/deps/zlib/crc32.h
149
- - vendor/libgit2/deps/zlib/deflate.c
150
- - vendor/libgit2/deps/zlib/deflate.h
151
- - vendor/libgit2/deps/zlib/infback.c
152
- - vendor/libgit2/deps/zlib/inffast.c
153
- - vendor/libgit2/deps/zlib/inffast.h
154
- - vendor/libgit2/deps/zlib/inffixed.h
155
- - vendor/libgit2/deps/zlib/inflate.c
156
- - vendor/libgit2/deps/zlib/inflate.h
157
- - vendor/libgit2/deps/zlib/inftrees.c
158
- - vendor/libgit2/deps/zlib/inftrees.h
159
- - vendor/libgit2/deps/zlib/trees.c
160
- - vendor/libgit2/deps/zlib/trees.h
161
- - vendor/libgit2/deps/zlib/zconf.h
162
- - vendor/libgit2/deps/zlib/zlib.h
163
- - vendor/libgit2/deps/zlib/zutil.c
164
- - vendor/libgit2/deps/zlib/zutil.h
136
+ - vendor/libgit2/cmake/Modules/FindHTTP_Parser.cmake
165
137
  - vendor/libgit2/include/git2.h
166
- - vendor/libgit2/include/git2/annotated_commit.h
167
- - vendor/libgit2/include/git2/attr.h
168
- - vendor/libgit2/include/git2/blame.h
169
- - vendor/libgit2/include/git2/blob.h
170
- - vendor/libgit2/include/git2/branch.h
171
- - vendor/libgit2/include/git2/buffer.h
138
+ - vendor/libgit2/include/git2/index.h
139
+ - vendor/libgit2/include/git2/oidarray.h
140
+ - vendor/libgit2/include/git2/remote.h
141
+ - vendor/libgit2/include/git2/notes.h
172
142
  - vendor/libgit2/include/git2/checkout.h
173
- - vendor/libgit2/include/git2/cherrypick.h
143
+ - vendor/libgit2/include/git2/sys/index.h
144
+ - vendor/libgit2/include/git2/sys/stream.h
145
+ - vendor/libgit2/include/git2/sys/transport.h
146
+ - vendor/libgit2/include/git2/sys/odb_backend.h
147
+ - vendor/libgit2/include/git2/sys/reflog.h
148
+ - vendor/libgit2/include/git2/sys/diff.h
149
+ - vendor/libgit2/include/git2/sys/commit.h
150
+ - vendor/libgit2/include/git2/sys/refs.h
151
+ - vendor/libgit2/include/git2/sys/repository.h
152
+ - vendor/libgit2/include/git2/sys/filter.h
153
+ - vendor/libgit2/include/git2/sys/refdb_backend.h
154
+ - vendor/libgit2/include/git2/sys/hashsig.h
155
+ - vendor/libgit2/include/git2/sys/openssl.h
156
+ - vendor/libgit2/include/git2/sys/config.h
157
+ - vendor/libgit2/include/git2/sys/mempack.h
158
+ - vendor/libgit2/include/git2/pack.h
159
+ - vendor/libgit2/include/git2/annotated_commit.h
160
+ - vendor/libgit2/include/git2/reset.h
161
+ - vendor/libgit2/include/git2/ignore.h
174
162
  - vendor/libgit2/include/git2/clone.h
175
- - vendor/libgit2/include/git2/commit.h
163
+ - vendor/libgit2/include/git2/transaction.h
176
164
  - vendor/libgit2/include/git2/common.h
177
- - vendor/libgit2/include/git2/config.h
178
- - vendor/libgit2/include/git2/cred_helpers.h
179
- - vendor/libgit2/include/git2/describe.h
180
- - vendor/libgit2/include/git2/diff.h
181
- - vendor/libgit2/include/git2/errors.h
182
- - vendor/libgit2/include/git2/filter.h
183
- - vendor/libgit2/include/git2/global.h
184
- - vendor/libgit2/include/git2/graph.h
185
- - vendor/libgit2/include/git2/ignore.h
186
- - vendor/libgit2/include/git2/index.h
187
- - vendor/libgit2/include/git2/indexer.h
188
- - vendor/libgit2/include/git2/inttypes.h
189
- - vendor/libgit2/include/git2/merge.h
190
- - vendor/libgit2/include/git2/message.h
191
- - vendor/libgit2/include/git2/net.h
192
- - vendor/libgit2/include/git2/notes.h
193
- - vendor/libgit2/include/git2/object.h
194
- - vendor/libgit2/include/git2/odb.h
195
- - vendor/libgit2/include/git2/odb_backend.h
165
+ - vendor/libgit2/include/git2/blame.h
196
166
  - vendor/libgit2/include/git2/oid.h
197
- - vendor/libgit2/include/git2/oidarray.h
198
- - vendor/libgit2/include/git2/pack.h
199
167
  - vendor/libgit2/include/git2/patch.h
200
- - vendor/libgit2/include/git2/pathspec.h
201
- - vendor/libgit2/include/git2/rebase.h
168
+ - vendor/libgit2/include/git2/cred_helpers.h
169
+ - vendor/libgit2/include/git2/transport.h
170
+ - vendor/libgit2/include/git2/errors.h
202
171
  - vendor/libgit2/include/git2/refdb.h
172
+ - vendor/libgit2/include/git2/odb_backend.h
173
+ - vendor/libgit2/include/git2/signature.h
174
+ - vendor/libgit2/include/git2/describe.h
203
175
  - vendor/libgit2/include/git2/reflog.h
204
- - vendor/libgit2/include/git2/refs.h
205
- - vendor/libgit2/include/git2/refspec.h
206
- - vendor/libgit2/include/git2/remote.h
207
- - vendor/libgit2/include/git2/repository.h
208
- - vendor/libgit2/include/git2/reset.h
209
- - vendor/libgit2/include/git2/revert.h
176
+ - vendor/libgit2/include/git2/merge.h
177
+ - vendor/libgit2/include/git2/pathspec.h
178
+ - vendor/libgit2/include/git2/blob.h
179
+ - vendor/libgit2/include/git2/attr.h
180
+ - vendor/libgit2/include/git2/diff.h
181
+ - vendor/libgit2/include/git2/version.h
182
+ - vendor/libgit2/include/git2/commit.h
183
+ - vendor/libgit2/include/git2/object.h
210
184
  - vendor/libgit2/include/git2/revparse.h
211
- - vendor/libgit2/include/git2/revwalk.h
212
- - vendor/libgit2/include/git2/signature.h
213
- - vendor/libgit2/include/git2/stash.h
214
185
  - vendor/libgit2/include/git2/status.h
186
+ - vendor/libgit2/include/git2/refs.h
187
+ - vendor/libgit2/include/git2/repository.h
188
+ - vendor/libgit2/include/git2/filter.h
189
+ - vendor/libgit2/include/git2/inttypes.h
215
190
  - vendor/libgit2/include/git2/stdint.h
191
+ - vendor/libgit2/include/git2/odb.h
192
+ - vendor/libgit2/include/git2/types.h
216
193
  - vendor/libgit2/include/git2/strarray.h
217
- - vendor/libgit2/include/git2/submodule.h
218
- - vendor/libgit2/include/git2/sys/commit.h
219
- - vendor/libgit2/include/git2/sys/config.h
220
- - vendor/libgit2/include/git2/sys/diff.h
221
- - vendor/libgit2/include/git2/sys/filter.h
222
- - vendor/libgit2/include/git2/sys/hashsig.h
223
- - vendor/libgit2/include/git2/sys/index.h
224
- - vendor/libgit2/include/git2/sys/mempack.h
225
- - vendor/libgit2/include/git2/sys/odb_backend.h
226
- - vendor/libgit2/include/git2/sys/openssl.h
227
- - vendor/libgit2/include/git2/sys/refdb_backend.h
228
- - vendor/libgit2/include/git2/sys/reflog.h
229
- - vendor/libgit2/include/git2/sys/refs.h
230
- - vendor/libgit2/include/git2/sys/repository.h
231
- - vendor/libgit2/include/git2/sys/stream.h
232
- - vendor/libgit2/include/git2/sys/transport.h
233
- - vendor/libgit2/include/git2/tag.h
194
+ - vendor/libgit2/include/git2/message.h
195
+ - vendor/libgit2/include/git2/revwalk.h
196
+ - vendor/libgit2/include/git2/cherrypick.h
234
197
  - vendor/libgit2/include/git2/trace.h
235
- - vendor/libgit2/include/git2/transaction.h
236
- - vendor/libgit2/include/git2/transport.h
198
+ - vendor/libgit2/include/git2/branch.h
237
199
  - vendor/libgit2/include/git2/tree.h
238
- - vendor/libgit2/include/git2/types.h
239
- - vendor/libgit2/include/git2/version.h
240
- - vendor/libgit2/libgit2.pc.in
241
- - vendor/libgit2/src/annotated_commit.c
242
- - vendor/libgit2/src/annotated_commit.h
243
- - vendor/libgit2/src/array.h
244
- - vendor/libgit2/src/attr.c
245
- - vendor/libgit2/src/attr.h
246
- - vendor/libgit2/src/attr_file.c
247
- - vendor/libgit2/src/attr_file.h
248
- - vendor/libgit2/src/attrcache.c
249
- - vendor/libgit2/src/attrcache.h
250
- - vendor/libgit2/src/bitvec.h
251
- - vendor/libgit2/src/blame.c
252
- - vendor/libgit2/src/blame.h
253
- - vendor/libgit2/src/blame_git.c
254
- - vendor/libgit2/src/blame_git.h
255
- - vendor/libgit2/src/blob.c
256
- - vendor/libgit2/src/blob.h
257
- - vendor/libgit2/src/branch.c
258
- - vendor/libgit2/src/branch.h
259
- - vendor/libgit2/src/buf_text.c
260
- - vendor/libgit2/src/buf_text.h
261
- - vendor/libgit2/src/buffer.c
262
- - vendor/libgit2/src/buffer.h
263
- - vendor/libgit2/src/cache.c
264
- - vendor/libgit2/src/cache.h
265
- - vendor/libgit2/src/cc-compat.h
200
+ - vendor/libgit2/include/git2/indexer.h
201
+ - vendor/libgit2/include/git2/rebase.h
202
+ - vendor/libgit2/include/git2/revert.h
203
+ - vendor/libgit2/include/git2/stash.h
204
+ - vendor/libgit2/include/git2/net.h
205
+ - vendor/libgit2/include/git2/graph.h
206
+ - vendor/libgit2/include/git2/buffer.h
207
+ - vendor/libgit2/include/git2/tag.h
208
+ - vendor/libgit2/include/git2/refspec.h
209
+ - vendor/libgit2/include/git2/global.h
210
+ - vendor/libgit2/include/git2/config.h
211
+ - vendor/libgit2/include/git2/submodule.h
212
+ - vendor/libgit2/src/array.h
213
+ - vendor/libgit2/src/vector.h
214
+ - vendor/libgit2/src/oidmap.h
215
+ - vendor/libgit2/src/fetchhead.c
216
+ - vendor/libgit2/src/indexer.c
217
+ - vendor/libgit2/src/delta-apply.c
218
+ - vendor/libgit2/src/posix.h
219
+ - vendor/libgit2/src/ignore.c
220
+ - vendor/libgit2/src/index.h
221
+ - vendor/libgit2/src/oidarray.h
222
+ - vendor/libgit2/src/index.c
223
+ - vendor/libgit2/src/remote.h
224
+ - vendor/libgit2/src/tls_stream.c
225
+ - vendor/libgit2/src/notes.h
266
226
  - vendor/libgit2/src/checkout.c
267
227
  - vendor/libgit2/src/checkout.h
268
- - vendor/libgit2/src/cherrypick.c
228
+ - vendor/libgit2/src/tree.c
229
+ - vendor/libgit2/src/sha1_lookup.c
230
+ - vendor/libgit2/src/pack.h
231
+ - vendor/libgit2/src/annotated_commit.h
232
+ - vendor/libgit2/src/pack-objects.c
233
+ - vendor/libgit2/src/transports/http.c
234
+ - vendor/libgit2/src/transports/smart_protocol.c
235
+ - vendor/libgit2/src/transports/smart.h
236
+ - vendor/libgit2/src/transports/winhttp.c
237
+ - vendor/libgit2/src/transports/git.c
238
+ - vendor/libgit2/src/transports/auth.c
239
+ - vendor/libgit2/src/transports/local.c
240
+ - vendor/libgit2/src/transports/cred_helpers.c
241
+ - vendor/libgit2/src/transports/smart.c
242
+ - vendor/libgit2/src/transports/auth.h
243
+ - vendor/libgit2/src/transports/cred.c
244
+ - vendor/libgit2/src/transports/ssh.c
245
+ - vendor/libgit2/src/transports/auth_negotiate.c
246
+ - vendor/libgit2/src/transports/cred.h
247
+ - vendor/libgit2/src/transports/auth_negotiate.h
248
+ - vendor/libgit2/src/transports/smart_pkt.c
249
+ - vendor/libgit2/src/hash.c
250
+ - vendor/libgit2/src/socket_stream.c
251
+ - vendor/libgit2/src/reflog.c
269
252
  - vendor/libgit2/src/clone.c
270
- - vendor/libgit2/src/clone.h
271
- - vendor/libgit2/src/commit.c
272
- - vendor/libgit2/src/commit.h
273
- - vendor/libgit2/src/commit_list.c
274
- - vendor/libgit2/src/commit_list.h
275
- - vendor/libgit2/src/common.h
276
- - vendor/libgit2/src/config.c
277
- - vendor/libgit2/src/config.h
278
- - vendor/libgit2/src/config_cache.c
279
- - vendor/libgit2/src/config_file.c
280
- - vendor/libgit2/src/config_file.h
281
- - vendor/libgit2/src/crlf.c
282
- - vendor/libgit2/src/curl_stream.c
283
- - vendor/libgit2/src/curl_stream.h
284
- - vendor/libgit2/src/date.c
285
- - vendor/libgit2/src/delta-apply.c
286
- - vendor/libgit2/src/delta-apply.h
287
- - vendor/libgit2/src/delta.c
288
- - vendor/libgit2/src/delta.h
289
- - vendor/libgit2/src/describe.c
290
- - vendor/libgit2/src/diff.c
291
- - vendor/libgit2/src/diff.h
292
- - vendor/libgit2/src/diff_driver.c
293
- - vendor/libgit2/src/diff_driver.h
294
- - vendor/libgit2/src/diff_file.c
295
- - vendor/libgit2/src/diff_file.h
296
- - vendor/libgit2/src/diff_patch.c
297
253
  - vendor/libgit2/src/diff_patch.h
254
+ - vendor/libgit2/src/buf_text.h
255
+ - vendor/libgit2/src/pathspec.c
256
+ - vendor/libgit2/src/refdb_fs.h
257
+ - vendor/libgit2/src/branch.c
258
+ - vendor/libgit2/src/tls_stream.h
259
+ - vendor/libgit2/src/refdb_fs.c
298
260
  - vendor/libgit2/src/diff_print.c
299
- - vendor/libgit2/src/diff_stats.c
300
- - vendor/libgit2/src/diff_tform.c
301
- - vendor/libgit2/src/diff_xdiff.c
302
- - vendor/libgit2/src/diff_xdiff.h
303
- - vendor/libgit2/src/errors.c
304
- - vendor/libgit2/src/fetch.c
305
- - vendor/libgit2/src/fetch.h
306
- - vendor/libgit2/src/fetchhead.c
307
- - vendor/libgit2/src/fetchhead.h
308
- - vendor/libgit2/src/filebuf.c
309
- - vendor/libgit2/src/filebuf.h
310
- - vendor/libgit2/src/fileops.c
311
- - vendor/libgit2/src/fileops.h
312
- - vendor/libgit2/src/filter.c
313
- - vendor/libgit2/src/filter.h
314
- - vendor/libgit2/src/fnmatch.c
315
- - vendor/libgit2/src/fnmatch.h
316
- - vendor/libgit2/src/global.c
317
- - vendor/libgit2/src/global.h
318
- - vendor/libgit2/src/graph.c
319
- - vendor/libgit2/src/hash.c
320
- - vendor/libgit2/src/hash.h
321
- - vendor/libgit2/src/hash/hash_common_crypto.h
322
- - vendor/libgit2/src/hash/hash_generic.c
323
- - vendor/libgit2/src/hash/hash_generic.h
324
- - vendor/libgit2/src/hash/hash_openssl.h
325
- - vendor/libgit2/src/hash/hash_win32.c
326
- - vendor/libgit2/src/hash/hash_win32.h
327
- - vendor/libgit2/src/hashsig.c
328
- - vendor/libgit2/src/ident.c
329
- - vendor/libgit2/src/idxmap.h
330
- - vendor/libgit2/src/ignore.c
331
261
  - vendor/libgit2/src/ignore.h
332
- - vendor/libgit2/src/index.c
333
- - vendor/libgit2/src/index.h
334
- - vendor/libgit2/src/indexer.c
335
- - vendor/libgit2/src/integer.h
262
+ - vendor/libgit2/src/status.c
263
+ - vendor/libgit2/src/mwindow.h
336
264
  - vendor/libgit2/src/iterator.c
337
- - vendor/libgit2/src/iterator.h
338
- - vendor/libgit2/src/khash.h
339
- - vendor/libgit2/src/map.h
340
- - vendor/libgit2/src/merge.c
341
- - vendor/libgit2/src/merge.h
342
- - vendor/libgit2/src/merge_file.c
343
- - vendor/libgit2/src/message.c
344
- - vendor/libgit2/src/message.h
265
+ - vendor/libgit2/src/describe.c
266
+ - vendor/libgit2/src/attrcache.h
267
+ - vendor/libgit2/src/diff_driver.c
268
+ - vendor/libgit2/src/graph.c
269
+ - vendor/libgit2/src/clone.h
270
+ - vendor/libgit2/src/openssl_stream.h
271
+ - vendor/libgit2/src/transaction.h
272
+ - vendor/libgit2/src/repository.c
273
+ - vendor/libgit2/src/diff_xdiff.c
345
274
  - vendor/libgit2/src/mwindow.c
346
- - vendor/libgit2/src/mwindow.h
347
- - vendor/libgit2/src/netops.c
348
- - vendor/libgit2/src/netops.h
349
- - vendor/libgit2/src/notes.c
350
- - vendor/libgit2/src/notes.h
351
- - vendor/libgit2/src/object.c
352
- - vendor/libgit2/src/object.h
353
- - vendor/libgit2/src/object_api.c
354
- - vendor/libgit2/src/odb.c
355
- - vendor/libgit2/src/odb.h
356
- - vendor/libgit2/src/odb_loose.c
357
- - vendor/libgit2/src/odb_mempack.c
358
- - vendor/libgit2/src/odb_pack.c
359
- - vendor/libgit2/src/offmap.h
360
- - vendor/libgit2/src/oid.c
275
+ - vendor/libgit2/src/common.h
276
+ - vendor/libgit2/src/khash.h
277
+ - vendor/libgit2/src/stransport_stream.h
278
+ - vendor/libgit2/src/util.h
279
+ - vendor/libgit2/src/zstream.h
280
+ - vendor/libgit2/src/blame.h
281
+ - vendor/libgit2/src/revwalk.c
361
282
  - vendor/libgit2/src/oid.h
362
- - vendor/libgit2/src/oidarray.c
363
- - vendor/libgit2/src/oidarray.h
364
- - vendor/libgit2/src/oidmap.h
365
- - vendor/libgit2/src/openssl_stream.c
366
- - vendor/libgit2/src/openssl_stream.h
367
- - vendor/libgit2/src/pack-objects.c
368
- - vendor/libgit2/src/pack-objects.h
283
+ - vendor/libgit2/src/trace.c
284
+ - vendor/libgit2/src/strmap.h
369
285
  - vendor/libgit2/src/pack.c
370
- - vendor/libgit2/src/pack.h
371
- - vendor/libgit2/src/path.c
372
- - vendor/libgit2/src/path.h
373
- - vendor/libgit2/src/pathspec.c
374
- - vendor/libgit2/src/pathspec.h
375
- - vendor/libgit2/src/pool.c
376
- - vendor/libgit2/src/pool.h
377
- - vendor/libgit2/src/posix.c
378
- - vendor/libgit2/src/posix.h
286
+ - vendor/libgit2/src/userdiff.h
379
287
  - vendor/libgit2/src/pqueue.c
380
- - vendor/libgit2/src/pqueue.h
381
- - vendor/libgit2/src/push.c
382
- - vendor/libgit2/src/push.h
383
- - vendor/libgit2/src/rebase.c
288
+ - vendor/libgit2/src/attr_file.c
289
+ - vendor/libgit2/src/iterator.h
290
+ - vendor/libgit2/src/curl_stream.h
291
+ - vendor/libgit2/src/cc-compat.h
384
292
  - vendor/libgit2/src/refdb.c
293
+ - vendor/libgit2/src/stream.h
294
+ - vendor/libgit2/src/stransport_stream.c
295
+ - vendor/libgit2/src/filebuf.c
296
+ - vendor/libgit2/src/transaction.c
297
+ - vendor/libgit2/src/util.c
298
+ - vendor/libgit2/src/path.c
299
+ - vendor/libgit2/src/netops.c
300
+ - vendor/libgit2/src/commit_list.h
301
+ - vendor/libgit2/src/object.c
302
+ - vendor/libgit2/src/diff.c
303
+ - vendor/libgit2/src/attr.c
304
+ - vendor/libgit2/src/commit.c
305
+ - vendor/libgit2/src/unix/posix.h
306
+ - vendor/libgit2/src/unix/map.c
307
+ - vendor/libgit2/src/unix/realpath.c
308
+ - vendor/libgit2/src/hash.h
385
309
  - vendor/libgit2/src/refdb.h
386
- - vendor/libgit2/src/refdb_fs.c
387
- - vendor/libgit2/src/refdb_fs.h
388
- - vendor/libgit2/src/reflog.c
389
- - vendor/libgit2/src/reflog.h
390
- - vendor/libgit2/src/refs.c
391
- - vendor/libgit2/src/refs.h
392
- - vendor/libgit2/src/refspec.c
393
- - vendor/libgit2/src/refspec.h
394
- - vendor/libgit2/src/remote.c
395
- - vendor/libgit2/src/remote.h
396
- - vendor/libgit2/src/repo_template.h
397
- - vendor/libgit2/src/repository.c
398
- - vendor/libgit2/src/repository.h
399
- - vendor/libgit2/src/reset.c
400
- - vendor/libgit2/src/revert.c
401
- - vendor/libgit2/src/revparse.c
402
- - vendor/libgit2/src/revwalk.c
403
- - vendor/libgit2/src/revwalk.h
404
- - vendor/libgit2/src/settings.c
405
- - vendor/libgit2/src/sha1_lookup.c
406
- - vendor/libgit2/src/sha1_lookup.h
407
- - vendor/libgit2/src/signature.c
310
+ - vendor/libgit2/src/hash/hash_win32.c
311
+ - vendor/libgit2/src/hash/hash_win32.h
312
+ - vendor/libgit2/src/hash/hash_openssl.h
313
+ - vendor/libgit2/src/hash/hash_generic.h
314
+ - vendor/libgit2/src/hash/hash_generic.c
315
+ - vendor/libgit2/src/hash/hash_common_crypto.h
316
+ - vendor/libgit2/src/merge_file.c
408
317
  - vendor/libgit2/src/signature.h
409
- - vendor/libgit2/src/socket_stream.c
410
- - vendor/libgit2/src/socket_stream.h
318
+ - vendor/libgit2/src/netops.h
319
+ - vendor/libgit2/src/zstream.c
320
+ - vendor/libgit2/src/reset.c
321
+ - vendor/libgit2/src/blame.c
322
+ - vendor/libgit2/src/strnlen.h
323
+ - vendor/libgit2/src/tree-cache.c
324
+ - vendor/libgit2/src/reflog.h
325
+ - vendor/libgit2/src/crlf.c
326
+ - vendor/libgit2/src/fnmatch.h
327
+ - vendor/libgit2/src/filebuf.h
328
+ - vendor/libgit2/src/merge.h
329
+ - vendor/libgit2/src/stash.c
330
+ - vendor/libgit2/src/merge.c
331
+ - vendor/libgit2/src/pathspec.h
332
+ - vendor/libgit2/src/blob.h
411
333
  - vendor/libgit2/src/sortedcache.c
412
- - vendor/libgit2/src/sortedcache.h
413
- - vendor/libgit2/src/stash.c
414
- - vendor/libgit2/src/status.c
334
+ - vendor/libgit2/src/attr.h
335
+ - vendor/libgit2/src/diff.h
336
+ - vendor/libgit2/src/idxmap.h
337
+ - vendor/libgit2/src/revparse.c
338
+ - vendor/libgit2/src/pool.h
339
+ - vendor/libgit2/src/curl_stream.c
340
+ - vendor/libgit2/src/odb_mempack.c
341
+ - vendor/libgit2/src/fetch.c
342
+ - vendor/libgit2/src/fnmatch.c
343
+ - vendor/libgit2/src/commit.h
344
+ - vendor/libgit2/src/object.h
415
345
  - vendor/libgit2/src/status.h
416
- - vendor/libgit2/src/stransport_stream.c
417
- - vendor/libgit2/src/stransport_stream.h
418
- - vendor/libgit2/src/stream.h
419
- - vendor/libgit2/src/strmap.c
420
- - vendor/libgit2/src/strmap.h
421
- - vendor/libgit2/src/strnlen.h
422
- - vendor/libgit2/src/submodule.c
423
- - vendor/libgit2/src/submodule.h
424
- - vendor/libgit2/src/sysdir.c
425
- - vendor/libgit2/src/sysdir.h
426
- - vendor/libgit2/src/tag.c
427
- - vendor/libgit2/src/tag.h
428
- - vendor/libgit2/src/thread-utils.c
346
+ - vendor/libgit2/src/odb_pack.c
347
+ - vendor/libgit2/src/refs.h
348
+ - vendor/libgit2/src/integer.h
349
+ - vendor/libgit2/src/bitvec.h
350
+ - vendor/libgit2/src/repository.h
351
+ - vendor/libgit2/src/path.h
429
352
  - vendor/libgit2/src/thread-utils.h
430
- - vendor/libgit2/src/tls_stream.c
431
- - vendor/libgit2/src/tls_stream.h
432
- - vendor/libgit2/src/trace.c
433
- - vendor/libgit2/src/trace.h
434
- - vendor/libgit2/src/transaction.c
435
- - vendor/libgit2/src/transaction.h
436
- - vendor/libgit2/src/transport.c
437
- - vendor/libgit2/src/transports/auth.c
438
- - vendor/libgit2/src/transports/auth.h
439
- - vendor/libgit2/src/transports/auth_negotiate.c
440
- - vendor/libgit2/src/transports/auth_negotiate.h
441
- - vendor/libgit2/src/transports/cred.c
442
- - vendor/libgit2/src/transports/cred.h
443
- - vendor/libgit2/src/transports/cred_helpers.c
444
- - vendor/libgit2/src/transports/git.c
445
- - vendor/libgit2/src/transports/http.c
446
- - vendor/libgit2/src/transports/local.c
447
- - vendor/libgit2/src/transports/smart.c
448
- - vendor/libgit2/src/transports/smart.h
449
- - vendor/libgit2/src/transports/smart_pkt.c
450
- - vendor/libgit2/src/transports/smart_protocol.c
451
- - vendor/libgit2/src/transports/ssh.c
452
- - vendor/libgit2/src/transports/winhttp.c
453
- - vendor/libgit2/src/tree-cache.c
353
+ - vendor/libgit2/src/filter.h
354
+ - vendor/libgit2/src/sha1_lookup.h
355
+ - vendor/libgit2/src/notes.c
356
+ - vendor/libgit2/src/refs.c
357
+ - vendor/libgit2/src/odb.h
358
+ - vendor/libgit2/src/diff_patch.c
359
+ - vendor/libgit2/src/attr_file.h
360
+ - vendor/libgit2/src/annotated_commit.c
361
+ - vendor/libgit2/src/message.h
362
+ - vendor/libgit2/src/message.c
363
+ - vendor/libgit2/src/cache.c
364
+ - vendor/libgit2/src/revwalk.h
365
+ - vendor/libgit2/src/config.c
366
+ - vendor/libgit2/src/object_api.c
367
+ - vendor/libgit2/src/fetchhead.h
368
+ - vendor/libgit2/src/oid.c
369
+ - vendor/libgit2/src/tsort.c
454
370
  - vendor/libgit2/src/tree-cache.h
455
- - vendor/libgit2/src/tree.c
371
+ - vendor/libgit2/src/trace.h
372
+ - vendor/libgit2/src/buffer.c
373
+ - vendor/libgit2/src/cherrypick.c
374
+ - vendor/libgit2/src/sysdir.h
375
+ - vendor/libgit2/src/branch.h
376
+ - vendor/libgit2/src/sysdir.c
456
377
  - vendor/libgit2/src/tree.h
457
- - vendor/libgit2/src/tsort.c
458
- - vendor/libgit2/src/unix/map.c
459
- - vendor/libgit2/src/unix/posix.h
460
- - vendor/libgit2/src/unix/realpath.c
461
- - vendor/libgit2/src/userdiff.h
462
- - vendor/libgit2/src/util.c
463
- - vendor/libgit2/src/util.h
464
- - vendor/libgit2/src/vector.c
465
- - vendor/libgit2/src/vector.h
466
- - vendor/libgit2/src/win32/dir.c
467
- - vendor/libgit2/src/win32/dir.h
468
- - vendor/libgit2/src/win32/error.c
378
+ - vendor/libgit2/src/delta.c
379
+ - vendor/libgit2/src/settings.c
380
+ - vendor/libgit2/src/diff_tform.c
381
+ - vendor/libgit2/src/diff_driver.h
382
+ - vendor/libgit2/src/fetch.h
383
+ - vendor/libgit2/src/blob.c
384
+ - vendor/libgit2/src/pack-objects.h
385
+ - vendor/libgit2/src/rebase.c
386
+ - vendor/libgit2/src/tag.c
387
+ - vendor/libgit2/src/fileops.c
388
+ - vendor/libgit2/src/openssl_stream.c
389
+ - vendor/libgit2/src/offmap.h
390
+ - vendor/libgit2/src/remote.c
391
+ - vendor/libgit2/src/signature.c
392
+ - vendor/libgit2/src/win32/w32_util.c
393
+ - vendor/libgit2/src/win32/posix.h
469
394
  - vendor/libgit2/src/win32/error.h
470
- - vendor/libgit2/src/win32/findfile.c
471
- - vendor/libgit2/src/win32/findfile.h
472
- - vendor/libgit2/src/win32/git2.rc
473
- - vendor/libgit2/src/win32/map.c
395
+ - vendor/libgit2/src/win32/w32_stack.c
396
+ - vendor/libgit2/src/win32/precompiled.h
397
+ - vendor/libgit2/src/win32/utf-conv.h
474
398
  - vendor/libgit2/src/win32/mingw-compat.h
475
- - vendor/libgit2/src/win32/msvc-compat.h
476
- - vendor/libgit2/src/win32/path_w32.c
477
- - vendor/libgit2/src/win32/path_w32.h
478
- - vendor/libgit2/src/win32/posix.h
479
399
  - vendor/libgit2/src/win32/posix_w32.c
480
- - vendor/libgit2/src/win32/precompiled.c
481
- - vendor/libgit2/src/win32/precompiled.h
482
- - vendor/libgit2/src/win32/pthread.c
483
- - vendor/libgit2/src/win32/pthread.h
400
+ - vendor/libgit2/src/win32/w32_buffer.c
401
+ - vendor/libgit2/src/win32/git2.rc
402
+ - vendor/libgit2/src/win32/w32_util.h
403
+ - vendor/libgit2/src/win32/win32-compat.h
404
+ - vendor/libgit2/src/win32/map.c
484
405
  - vendor/libgit2/src/win32/reparse.h
485
- - vendor/libgit2/src/win32/utf-conv.c
486
- - vendor/libgit2/src/win32/utf-conv.h
406
+ - vendor/libgit2/src/win32/dir.c
487
407
  - vendor/libgit2/src/win32/version.h
488
- - vendor/libgit2/src/win32/w32_buffer.c
408
+ - vendor/libgit2/src/win32/pthread.c
409
+ - vendor/libgit2/src/win32/dir.h
410
+ - vendor/libgit2/src/win32/path_w32.c
411
+ - vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h
489
412
  - vendor/libgit2/src/win32/w32_buffer.h
413
+ - vendor/libgit2/src/win32/path_w32.h
414
+ - vendor/libgit2/src/win32/error.c
490
415
  - vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c
491
- - vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h
492
- - vendor/libgit2/src/win32/w32_stack.c
416
+ - vendor/libgit2/src/win32/msvc-compat.h
417
+ - vendor/libgit2/src/win32/findfile.h
418
+ - vendor/libgit2/src/win32/utf-conv.c
419
+ - vendor/libgit2/src/win32/precompiled.c
420
+ - vendor/libgit2/src/win32/findfile.c
421
+ - vendor/libgit2/src/win32/pthread.h
493
422
  - vendor/libgit2/src/win32/w32_stack.h
494
- - vendor/libgit2/src/win32/w32_util.c
495
- - vendor/libgit2/src/win32/w32_util.h
496
- - vendor/libgit2/src/win32/win32-compat.h
497
- - vendor/libgit2/src/xdiff/xdiff.h
498
- - vendor/libgit2/src/xdiff/xdiffi.c
499
- - vendor/libgit2/src/xdiff/xdiffi.h
423
+ - vendor/libgit2/src/pqueue.h
424
+ - vendor/libgit2/src/date.c
425
+ - vendor/libgit2/src/xdiff/xutils.h
500
426
  - vendor/libgit2/src/xdiff/xemit.c
427
+ - vendor/libgit2/src/xdiff/xmerge.c
501
428
  - vendor/libgit2/src/xdiff/xemit.h
502
- - vendor/libgit2/src/xdiff/xhistogram.c
503
- - vendor/libgit2/src/xdiff/xinclude.h
504
429
  - vendor/libgit2/src/xdiff/xmacros.h
505
- - vendor/libgit2/src/xdiff/xmerge.c
506
- - vendor/libgit2/src/xdiff/xpatience.c
507
430
  - vendor/libgit2/src/xdiff/xprepare.c
508
- - vendor/libgit2/src/xdiff/xprepare.h
509
431
  - vendor/libgit2/src/xdiff/xtypes.h
432
+ - vendor/libgit2/src/xdiff/xdiff.h
433
+ - vendor/libgit2/src/xdiff/xinclude.h
510
434
  - vendor/libgit2/src/xdiff/xutils.c
511
- - vendor/libgit2/src/xdiff/xutils.h
512
- - vendor/libgit2/src/zstream.c
513
- - vendor/libgit2/src/zstream.h
435
+ - vendor/libgit2/src/xdiff/xpatience.c
436
+ - vendor/libgit2/src/xdiff/xprepare.h
437
+ - vendor/libgit2/src/xdiff/xhistogram.c
438
+ - vendor/libgit2/src/xdiff/xdiffi.c
439
+ - vendor/libgit2/src/xdiff/xdiffi.h
440
+ - vendor/libgit2/src/transport.c
441
+ - vendor/libgit2/src/blame_git.c
442
+ - vendor/libgit2/src/commit_list.c
443
+ - vendor/libgit2/src/repo_template.h
444
+ - vendor/libgit2/src/delta.h
445
+ - vendor/libgit2/src/errors.c
446
+ - vendor/libgit2/src/push.h
447
+ - vendor/libgit2/src/revert.c
448
+ - vendor/libgit2/src/config_cache.c
449
+ - vendor/libgit2/src/oidarray.c
450
+ - vendor/libgit2/src/config_file.h
451
+ - vendor/libgit2/src/submodule.c
452
+ - vendor/libgit2/src/odb_loose.c
453
+ - vendor/libgit2/src/odb.c
454
+ - vendor/libgit2/src/hashsig.c
455
+ - vendor/libgit2/src/buffer.h
456
+ - vendor/libgit2/src/diff_stats.c
457
+ - vendor/libgit2/src/buf_text.c
458
+ - vendor/libgit2/src/tag.h
459
+ - vendor/libgit2/src/filter.c
460
+ - vendor/libgit2/src/map.h
461
+ - vendor/libgit2/src/diff_file.c
462
+ - vendor/libgit2/src/config_file.c
463
+ - vendor/libgit2/src/cache.h
464
+ - vendor/libgit2/src/sortedcache.h
465
+ - vendor/libgit2/src/refspec.h
466
+ - vendor/libgit2/src/global.c
467
+ - vendor/libgit2/src/diff_file.h
468
+ - vendor/libgit2/src/global.h
469
+ - vendor/libgit2/src/attrcache.c
470
+ - vendor/libgit2/src/fileops.h
471
+ - vendor/libgit2/src/refspec.c
472
+ - vendor/libgit2/src/pool.c
473
+ - vendor/libgit2/src/push.c
474
+ - vendor/libgit2/src/diff_xdiff.h
475
+ - vendor/libgit2/src/socket_stream.h
476
+ - vendor/libgit2/src/blame_git.h
477
+ - vendor/libgit2/src/config.h
478
+ - vendor/libgit2/src/thread-utils.c
479
+ - vendor/libgit2/src/ident.c
480
+ - vendor/libgit2/src/posix.c
481
+ - vendor/libgit2/src/vector.c
482
+ - vendor/libgit2/src/submodule.h
483
+ - vendor/libgit2/src/delta-apply.h
484
+ - vendor/libgit2/src/strmap.c
485
+ - vendor/libgit2/deps/zlib/zutil.c
486
+ - vendor/libgit2/deps/zlib/trees.c
487
+ - vendor/libgit2/deps/zlib/zutil.h
488
+ - vendor/libgit2/deps/zlib/inflate.h
489
+ - vendor/libgit2/deps/zlib/inffast.c
490
+ - vendor/libgit2/deps/zlib/inflate.c
491
+ - vendor/libgit2/deps/zlib/deflate.h
492
+ - vendor/libgit2/deps/zlib/crc32.h
493
+ - vendor/libgit2/deps/zlib/crc32.c
494
+ - vendor/libgit2/deps/zlib/zconf.h
495
+ - vendor/libgit2/deps/zlib/inftrees.h
496
+ - vendor/libgit2/deps/zlib/zlib.h
497
+ - vendor/libgit2/deps/zlib/infback.c
498
+ - vendor/libgit2/deps/zlib/inffast.h
499
+ - vendor/libgit2/deps/zlib/inftrees.c
500
+ - vendor/libgit2/deps/zlib/adler32.c
501
+ - vendor/libgit2/deps/zlib/deflate.c
502
+ - vendor/libgit2/deps/zlib/trees.h
503
+ - vendor/libgit2/deps/zlib/inffixed.h
504
+ - vendor/libgit2/deps/regex/regexec.c
505
+ - vendor/libgit2/deps/regex/regex.c
506
+ - vendor/libgit2/deps/regex/regcomp.c
507
+ - vendor/libgit2/deps/regex/regex_internal.c
508
+ - vendor/libgit2/deps/regex/regex_internal.h
509
+ - vendor/libgit2/deps/regex/regex.h
510
+ - vendor/libgit2/deps/regex/config.h
511
+ - vendor/libgit2/deps/http-parser/http_parser.h
512
+ - vendor/libgit2/deps/http-parser/LICENSE-MIT
513
+ - vendor/libgit2/deps/http-parser/http_parser.c
514
+ - vendor/libgit2/deps/winhttp/urlmon.h
515
+ - vendor/libgit2/deps/winhttp/winhttp.h
516
+ - vendor/libgit2/deps/winhttp/winhttp.def
517
+ - vendor/libgit2/deps/winhttp/winhttp64.def
518
+ - vendor/libgit2/CMakeLists.txt
519
+ - vendor/libgit2/Makefile.embed
520
+ - vendor/libgit2/AUTHORS
521
+ - vendor/libgit2/COPYING
522
+ - vendor/libgit2/libgit2.pc.in
523
+ - ext/rugged/extconf.rb
514
524
  homepage: https://github.com/libgit2/rugged
515
525
  licenses:
516
526
  - MIT
517
- metadata: {}
518
527
  post_install_message:
519
528
  rdoc_options: []
520
529
  require_paths:
521
530
  - lib
522
531
  required_ruby_version: !ruby/object:Gem::Requirement
532
+ none: false
523
533
  requirements:
524
- - - ">="
534
+ - - ! '>='
525
535
  - !ruby/object:Gem::Version
526
536
  version: 1.9.3
527
537
  required_rubygems_version: !ruby/object:Gem::Requirement
538
+ none: false
528
539
  requirements:
529
- - - ">"
540
+ - - ! '>'
530
541
  - !ruby/object:Gem::Version
531
542
  version: 1.3.1
532
543
  requirements: []
533
544
  rubyforge_project:
534
- rubygems_version: 2.2.2
545
+ rubygems_version: 1.8.23
535
546
  signing_key:
536
- specification_version: 4
547
+ specification_version: 3
537
548
  summary: Rugged is a Ruby binding to the libgit2 linkable library
538
549
  test_files: []