Sha256: af560ea4793fa84d567466457537ddabc597286038bce6ca6bc710d93d40c76d
Contents?: true
Size: 795 Bytes
Versions: 469
Compression:
Stored size: 795 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 def self.example_code [] end def self.category :misc end end end end
Version data entries
469 entries across 469 versions & 1 rubygems