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