Sha256: 9e61226f47ec0b3810457d2fa85ea3d85ccd326b19c52ee8ea167af28e1856f0

Contents?: true

Size: 1018 Bytes

Versions: 4

Compression:

Stored size: 1018 Bytes

Contents

require 'fastlane/actions/actions_helper'

module Fastlane
  class Action
    def self.run(params)
      
    end

    def self.description
      "No description provided".red
    end

    def self.details
      nil # this is your change to provide a more detailed description of this action
    end

    def self.available_options
      # Return an array of 2-3 element arrays, like:
      # [
      #   ['app_identifier', 'This value is responsible for X', 'ENVIRONMENT_VARIABLE'],
      #   ['app_identifier', 'This value is responsible for X']
      # ]
      # Take a look at sigh.rb if you're using the config manager of fastlane
      nil
    end

    def self.output
      # Return the keys you provide on the shared area
      # [
      #   ['IPA_OUTPUT_PATH', 'The path to the newly generated ipa file']
      # ]
      nil
    end

    def self.author
      "KrauseFx"
    end

    # to allow a simple `sh` in the custom actions
    def self.sh(command)
      Fastlane::Actions.sh(command)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fastlane-0.10.0 lib/fastlane/action.rb
fastlane-0.9.0 lib/fastlane/action.rb
fastlane-0.8.1 lib/fastlane/action.rb
fastlane-0.8.0 lib/fastlane/action.rb