Class: Fastlane::Actions::GitBranchAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/git_branch.rb

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, method_missing, other_action, return_value, sh, step_text

Class Method Details

.authorsObject



33
34
35
# File 'lib/fastlane/actions/git_branch.rb', line 33

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



25
26
27
# File 'lib/fastlane/actions/git_branch.rb', line 25

def self.available_options
  []
end

.descriptionObject



17
18
19
# File 'lib/fastlane/actions/git_branch.rb', line 17

def self.description
  "Returns the name of the current git branch"
end

.detailsObject



21
22
23
# File 'lib/fastlane/actions/git_branch.rb', line 21

def self.details
  "If no branch could be found, this action will return nil"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/fastlane/actions/git_branch.rb', line 37

def self.is_supported?(platform)
  true
end

.outputObject



29
30
31
# File 'lib/fastlane/actions/git_branch.rb', line 29

def self.output
  []
end

.run(params) ⇒ Object



7
8
9
10
11
# File 'lib/fastlane/actions/git_branch.rb', line 7

def self.run(params)
  return ENV['GIT_BRANCH'] if ENV['GIT_BRANCH']
  return ENV["TRAVIS_BRANCH"] if ENV["TRAVIS_BRANCH"]
  `git symbolic-ref HEAD --short 2>/dev/null`.strip
end