gitlab_git 7.0.0.rc15 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/gitlab_git/repository.rb +7 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 688084cb5898dc99ab4fc06eb9b04310dbfcced7
|
4
|
+
data.tar.gz: 43330749b60447b411c8806c62a0c9e821fffccf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 782d03d25f444e2de0d375cfb4b1ba7ccd2a9d803947bd4ab63fec73d6e101028a51ce1d215c6a8f9fa4f4327831f4f91142e4f9c4693f99c48d26ed1872d7a4
|
7
|
+
data.tar.gz: 2b658627287a05b4bd6e36fad8c85bffbd4b3cb78351703d239f8f567f009c787eba5ef65602679576787cd9745a88d88ac5777b89729623920ce2462acf6887
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
7.0.0
|
1
|
+
7.0.0
|
@@ -66,12 +66,15 @@ module Gitlab
|
|
66
66
|
def tags
|
67
67
|
rugged.references.each("refs/tags/*").map do |ref|
|
68
68
|
message = nil
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
69
|
+
|
70
|
+
if ref.target.is_a?(Rugged::Tag::Annotation)
|
71
|
+
tag_message = ref.target.message
|
72
|
+
|
73
|
+
if tag_message.respond_to?(:chomp)
|
74
|
+
message = tag_message.chomp
|
73
75
|
end
|
74
76
|
end
|
77
|
+
|
75
78
|
Tag.new(ref.name, ref.target, message)
|
76
79
|
end.sort_by(&:name)
|
77
80
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_git
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.0
|
4
|
+
version: 7.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitriy Zaporozhets
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gitlab-linguist
|
@@ -103,9 +103,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
103
|
version: '0'
|
104
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
105
|
requirements:
|
106
|
-
- - "
|
106
|
+
- - ">="
|
107
107
|
- !ruby/object:Gem::Version
|
108
|
-
version:
|
108
|
+
version: '0'
|
109
109
|
requirements: []
|
110
110
|
rubyforge_project:
|
111
111
|
rubygems_version: 2.4.5
|