class Fastlane::Actions::GitPullAction

def self.author

def self.author
  "KrauseFx"
end

def self.available_options

def self.available_options
  [
  ]
end

def self.description

def self.description
  "Executes a simple git pull command"
end

def self.is_supported?(platform)

def self.is_supported?(platform)
  true
end

def self.run(params)

def self.run(params)
  command = [
    'git',
    'pull',
    '--tags'
  ]
  Actions.sh(command.join(' '))
  Helper.log.info 'Sucesfully pulled from remote.'
end