Sha256: 8de3ea1820040a4bef47624d9194661b4605df965d0c8c4c1d3f1855b108344a

Contents?: true

Size: 559 Bytes

Versions: 3

Compression:

Stored size: 559 Bytes

Contents

module Fastlane
  module Actions
    class DebugAction < Action
      def self.run(params)
        puts("Lane Context".green)
        puts(Actions.lane_context)
      end

      def self.description
        "Print out an overview of the lane context values"
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'debug'
        ]
      end

      def self.category
        :misc
      end

      def self.author
        "KrauseFx"
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 fastlane/lib/fastlane/actions/debug.rb
fastlane_hotfix-2.165.0 fastlane/lib/fastlane/actions/debug.rb
fastlane_hotfix-2.187.0 fastlane/lib/fastlane/actions/debug.rb