Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tag.rb « git « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5342c3d310a2798a036575386f0692f99a04612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Gitlab
  module Git
    class Tag < Ref
      attr_reader :object_sha

      def initialize(repository, name, target, message = nil)
        super(repository, name, target)

        @message = message
      end

      def message
        encode! @message
      end
    end
  end
end