class Pantograph::Actions::GitPullTagsAction
Public Class Methods
category()
click to toggle source
# File pantograph/lib/pantograph/actions/git_pull_tags.rb, line 26 def self.category :source_control end
description()
click to toggle source
# File pantograph/lib/pantograph/actions/git_pull_tags.rb, line 8 def self.description 'Executes a simple `git fetch --tags` command' end
example_code()
click to toggle source
# File pantograph/lib/pantograph/actions/git_pull_tags.rb, line 20 def self.example_code [ 'git_pull_tags' ] end
is_supported?(platform)
click to toggle source
# File pantograph/lib/pantograph/actions/git_pull_tags.rb, line 16 def self.is_supported?(platform) true end
run(params)
click to toggle source
# File pantograph/lib/pantograph/actions/git_pull_tags.rb, line 4 def self.run(params) Actions.sh('git fetch --tags') end