Sha256: 91390bb00ddb1d0772c782f20dc37d093ef3bdb3223103c8a0d66145a805e655
Contents?: true
Size: 339 Bytes
Versions: 20
Compression:
Stored size: 339 Bytes
Contents
module Fastlane module Actions class SayAction < Action def self.run(params) text = params.join(' ') Actions.sh("say '#{text}'") end def self.description "This action speaks out loud the given text" end def self.is_supported?(platform) true end end end end
Version data entries
20 entries across 20 versions & 1 rubygems