Sha256: 5261922a800cd6aa5a91d15f21dfe6430fdf768161508e5ea23888907006163b

Contents?: true

Size: 1.53 KB

Versions: 6

Compression:

Stored size: 1.53 KB

Contents

module Pantograph
  module Actions
    class LastGitCommitAction < Action
      def self.run(params)
        Actions.last_git_commit_dict
      end

      #####################################################
      # @!group Documentation
      #####################################################

      def self.description
        'Return last git commit hash, abbreviated commit hash, commit message and author'
      end

      def self.return_value
        "Returns the following dict: {commit_hash: \"commit hash\", abbreviated_commit_hash: \"abbreviated commit hash\" author: \"Author\", author_email: \"author email\", message: \"commit message\"}"
      end

      def self.return_type
        :hash_of_strings
      end

      def self.authors
        ['ngutman', 'johnknapprs']
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'commit = last_git_commit
          author = commit[:author] # author of the commit
          author_email = commit[:author_email] # email of the author of the commit
          hash = commit[:commit_hash] # long sha of commit
          short_hash = commit[:abbreviated_commit_hash] # short sha of commit'
        ]
      end

      def self.category
        :source_control
      end

      def self.sample_return_value
        {
          message: "message",
          author: "author",
          author_email: "author_email",
          commit_hash: "commit_hash",
          abbreviated_commit_hash: "short_hash"
        }
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pantograph-0.1.22 pantograph/lib/pantograph/actions/last_git_commit.rb
pantograph-0.1.21 pantograph/lib/pantograph/actions/last_git_commit.rb
pantograph-0.1.20 pantograph/lib/pantograph/actions/last_git_commit.rb
pantograph-0.1.19 pantograph/lib/pantograph/actions/last_git_commit.rb
pantograph-0.1.17 pantograph/lib/pantograph/actions/last_git_commit.rb
pantograph-0.1.16 pantograph/lib/pantograph/actions/last_git_commit.rb