Sha256: ca205e10789ceca18458412391606098c168e865c0760c34b3242dab9f0989f0

Contents?: true

Size: 1.29 KB

Versions: 48

Compression:

Stored size: 1.29 KB

Contents

module Fastlane
  module Actions
    class GitSubmoduleUpdateAction < Action
      def self.run(params)
        commands = ["git submodule update"]
        commands += ["--init"] if params[:init]
        commands += ["--recursive"] if params[:recursive]
        Actions.sh(commands.join(' '))
      end

      #####################################################
      # @!group Documentation
      #####################################################

      def self.description
        "Executes a git submodule command"
      end

      def self.details
        nil
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :recursive,
           description: "Should the submodules be updated recursively",
           type: Boolean,
           default_value: false),
          FastlaneCore::ConfigItem.new(key: :init,
           description: "Should the submodules be initiated before update",
           type: Boolean,
           is_string: false,
           default_value: false)
        ]
      end

      def self.output
      end

      def self.return_value
      end

      def self.authors
        ["braunico"]
      end

      def self.is_supported?(platform)
        return true
      end

      def self.category
        :source_control
      end
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
fastlane-2.87.0 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.87.0.beta.20180323050014 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.87.0.beta.20180322050115 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.86.2 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.87.0.beta.20180321050017 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.86.1 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.87.0.beta.20180320050108 fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane-2.86.0 fastlane/lib/fastlane/actions/git_submodule_update.rb