Sha256: e35059b4e33d5e993c24417429751d1d23a61685fa7b1765bb0a77e989437828

Contents?: true

Size: 1.36 KB

Versions: 432

Compression:

Stored size: 1.36 KB

Contents

module Fastlane
  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\", message: \"commit message\"}"
      end

      def self.author
        "ngutman"
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'commit = last_git_commit
          crashlytics(notes: commit[:message]) # message of commit
          author = commit[:author] # 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",
          commit_hash: "commit_hash",
          abbreviated_commit_hash: "short_hash"
        }
      end
    end
  end
end

Version data entries

432 entries across 432 versions & 1 rubygems

Version Path
fastlane-2.61.0.beta.20171005010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.61.0.beta.20171004010004 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.1 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20171003010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20171002010004 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20171001010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20170930010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20170929010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20170928010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20170927010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.60.0.beta.20170926010004 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.59.0 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.59.0.beta.20170925010002 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.59.0.beta.20170924010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.59.0.beta.20170923010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.59.0.beta.20170922010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.59.0.beta.20170921010003 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.58.0 fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane-2.58.0.beta.20170920010003 fastlane/lib/fastlane/actions/last_git_commit.rb