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