Sha256: 6c628ec79e6735e39efa28f328e4e968cd30aedd141a6c280d76f526b03a2277

Contents?: true

Size: 893 Bytes

Versions: 12

Compression:

Stored size: 893 Bytes

Contents

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

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

      def self.description
        "Import another Fastfile to use its lanes"
      end

      def self.details
        [
          "This is useful if you have shared lanes across multiple apps and you want to store a Fastfile",
          "in a separate folder. The path must be relative to the Fastfile this is called from."
        ].join("\n")
      end

      def self.available_options
        
      end

      def self.output
        []
      end

      def self.authors
        ["KrauseFx"]
      end

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
fastlane-1.20.0 lib/fastlane/actions/import.rb
fastlane-1.19.0 lib/fastlane/actions/import.rb
fastlane-1.18.0 lib/fastlane/actions/import.rb
fastlane-1.17.1 lib/fastlane/actions/import.rb
fastlane-1.17.0 lib/fastlane/actions/import.rb
fastlane-1.16.0 lib/fastlane/actions/import.rb
fastlane-1.15.0 lib/fastlane/actions/import.rb
fastlane-1.14.1 lib/fastlane/actions/import.rb
fastlane-1.14.0 lib/fastlane/actions/import.rb
fastlane-1.13.1 lib/fastlane/actions/import.rb
fastlane-1.13.0 lib/fastlane/actions/import.rb
fastlane-1.12.0 lib/fastlane/actions/import.rb