Sha256: 1f80f418758e4b9d3473e0ec2aa02d472f30f254a26789195f9413ad2ffa350d

Contents?: true

Size: 588 Bytes

Versions: 50

Compression:

Stored size: 588 Bytes

Contents

module Fastlane
  module Actions
    class PutsAction < Action
      def self.run(params)
        UI.message params.join(' ')
      end

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

      def self.description
        "Prints out the given text"
      end

      def self.authors
        ["KrauseFx"]
      end

      def self.is_supported?(platform)
        true
      end

      # We don't want to show this as step
      def self.step_text
        nil
      end
    end
  end
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
fastlane-1.63.1 lib/fastlane/actions/puts.rb
fastlane-1.63.0 lib/fastlane/actions/puts.rb
fastlane-1.62.0 lib/fastlane/actions/puts.rb
fastlane-1.61.0 lib/fastlane/actions/puts.rb
fastlane-1.60.0 lib/fastlane/actions/puts.rb
fastlane-1.59.0 lib/fastlane/actions/puts.rb
fastlane-1.58.0 lib/fastlane/actions/puts.rb
fastlane-1.57.0 lib/fastlane/actions/puts.rb
fastlane-1.56.0 lib/fastlane/actions/puts.rb
fastlane-1.55.0 lib/fastlane/actions/puts.rb