Sha256: 5976d1134e7bad3de8b490f4c7c20bf58357376111b2dabe9a00eb179b4ab15e

Contents?: true

Size: 524 Bytes

Versions: 7

Compression:

Stored size: 524 Bytes

Contents

module Pantograph
  module Actions
    class GitPullTagsAction < Action
      def self.run(params)
        Actions.sh('git fetch --tags')
      end

      def self.description
        'Executes a simple `git fetch --tags` command'
      end

      def self.authors
        ['johnknapprs']
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'git_pull_tags'
        ]
      end

      def self.category
        :source_control
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pantograph-0.1.22 pantograph/lib/pantograph/actions/git_pull_tags.rb
pantograph-0.1.21 pantograph/lib/pantograph/actions/git_pull_tags.rb
pantograph-0.1.20 pantograph/lib/pantograph/actions/git_pull_tags.rb
pantograph-0.1.19 pantograph/lib/pantograph/actions/git_pull_tags.rb
pantograph-0.1.17 pantograph/lib/pantograph/actions/git_pull_tags.rb
pantograph-0.1.16 pantograph/lib/pantograph/actions/git_pull_tags.rb
pantograph-0.1.15 pantograph/lib/pantograph/actions/git_pull_tags.rb