Sha256: b4ac31907b085bda0a76a88824f7dda29b91dc107f33a34c744c54d1db2bdd45

Contents?: true

Size: 890 Bytes

Versions: 5

Compression:

Stored size: 890 Bytes

Contents

module Fastlane
  module Actions
    class ImportFromGitAction < Action
      def self.run(params)
        # this is implemented in the fast_file.rb
      end

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

      def self.description
        "Import another Fastfile from a remote git repository to use its lanes"
      end

      def self.details
        [
          "This is useful if you have shared lanes across multiple apps and you want to store the Fastfile",
          "in a remote git repository."
        ].join("\n")
      end

      def self.available_options
        
      end

      def self.output
        []
      end

      def self.authors
        ["fabiomassimo", "KrauseFx"]
      end

      def self.is_supported?(platform)
        true
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fastlane-1.18.0 lib/fastlane/actions/import_from_git.rb
fastlane-1.17.1 lib/fastlane/actions/import_from_git.rb
fastlane-1.17.0 lib/fastlane/actions/import_from_git.rb
fastlane-1.16.0 lib/fastlane/actions/import_from_git.rb
fastlane-1.15.0 lib/fastlane/actions/import_from_git.rb