Sha256: e4b77f5dfed8a821828db7cb6167e8da26cd1e17f15c6a62f77040c3ce399a01
Contents?: true
Size: 593 Bytes
Versions: 56
Compression:
Stored size: 593 Bytes
Contents
module Fastlane module Actions class PutsAction < Action def self.run(params) Helper.log.info 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
56 entries across 56 versions & 1 rubygems