Sha256: 0d74d96b1b4b8e9aa255a2093178b1f38decd698a55e4eafa52ba3c5da7fc3cd
Contents?: true
Size: 696 Bytes
Versions: 106
Compression:
Stored size: 696 Bytes
Contents
module Fastlane module Actions class LaneContextAction < Action def self.run(params) Actions.lane_context end ##################################################### # @!group Documentation ##################################################### def self.description "An alias to `Actions.lane_context`" end def self.available_options [] end def self.output [] 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
106 entries across 106 versions & 1 rubygems