Sha256: 6ccaae45ecdefa2983aa6454b1180e530f042fe5f9c267affd59c4677e277d6b

Contents?: true

Size: 194 Bytes

Versions: 1

Compression:

Stored size: 194 Bytes

Contents

module Capistrano
  module Jira
    class Commit
      attr_reader :message, :hash

      def initialize(log)
        @hash= log[0...8]
        @message = log[9..-1]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capistrano-jira-0.3.1 lib/capistrano/jira/commit.rb