gitlab_git 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gitlab_git.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69e21829c039ca5820920a132c08e6c6aae72035
|
4
|
+
data.tar.gz: b74f7a4406fa19011e336e8cf3a5215be5d292c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d45ab89f76bf8101a88caa3f921dc5d48f798484a04056d04081b52c0ac2decf4ff92f70ddfcd032a3444ea0e360ada8fe33093450369f477914a565f06931d
|
7
|
+
data.tar.gz: e791e3c064e5a3eda699dd5693bbce28562e5edf182c82e2d26826ed8480f9cd9b2d417a86e993bc9a61a3ee4cc0c49f023574c08f02a2c548b4573091d8ffea
|
data/lib/gitlab_git.rb
CHANGED
@@ -4,6 +4,12 @@ require 'fileutils'
|
|
4
4
|
require 'grit'
|
5
5
|
require 'linguist'
|
6
6
|
require 'active_support/core_ext/hash/keys'
|
7
|
+
require 'grit'
|
8
|
+
require 'grit_ext'
|
9
|
+
|
10
|
+
Grit::Blob.class_eval do
|
11
|
+
include Linguist::BlobHelper
|
12
|
+
end
|
7
13
|
|
8
14
|
# Gitlab::Git
|
9
15
|
require_relative "gitlab_git/popen"
|