Class: Fastlane::Actions::GitBranchAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, lane_context, method_missing, other_action, return_value, sample_return_value, sh, step_text
Class Method Details
.authors ⇒ Object
33
34
35
|
# File 'lib/fastlane/actions/git_branch.rb', line 33
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
25
26
27
|
# File 'lib/fastlane/actions/git_branch.rb', line 25
def self.available_options
[]
end
|
.category ⇒ Object
47
48
49
|
# File 'lib/fastlane/actions/git_branch.rb', line 47
def self.category
:source_control
end
|
.description ⇒ Object
17
18
19
|
# File 'lib/fastlane/actions/git_branch.rb', line 17
def self.description
"Returns the name of the current git branch"
end
|
.details ⇒ Object
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
|
.example_code ⇒ Object
41
42
43
44
45
|
# File 'lib/fastlane/actions/git_branch.rb', line 41
def self.example_code
[
'git_branch'
]
end
|
.is_supported?(platform) ⇒ Boolean
37
38
39
|
# File 'lib/fastlane/actions/git_branch.rb', line 37
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
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
|