Sha256: c14e657148575306fd3b95042a3ac9e664e9fb1860ca50a18679955def4820f2

Contents?: true

Size: 724 Bytes

Versions: 12

Compression:

Stored size: 724 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

      def self.example_code
        [
          'puts "Hi there"'
        ]
      end

      def self.category
        :misc
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
fastlane-1.111.0 lib/fastlane/actions/puts.rb
fastlane-1.110.0 lib/fastlane/actions/puts.rb
fastlane-1.109.0 lib/fastlane/actions/puts.rb
fastlane-1.108.0 lib/fastlane/actions/puts.rb
fastlane-1.107.0 lib/fastlane/actions/puts.rb
fastlane-1.106.2 lib/fastlane/actions/puts.rb
fastlane-1.106.1 lib/fastlane/actions/puts.rb
fastlane-1.106.0 lib/fastlane/actions/puts.rb
fastlane-1.105.3 lib/fastlane/actions/puts.rb
fastlane-1.105.2 lib/fastlane/actions/puts.rb
fastlane-1.105.1 lib/fastlane/actions/puts.rb
fastlane-1.105.0 lib/fastlane/actions/puts.rb