class Fastlane::Actions::LaneContextAction
Public Class Methods
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 23 def self.available_options [] end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 55 def self.category :misc end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 12 def self.description "Access lane context values" end
@!group Documentation
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 16 def self.details [ "Access the fastlane lane context values.", "More information about how the lane context works: [https://docs.fastlane.tools/advanced/#lane-context](https://docs.fastlane.tools/advanced/#lane-context)." ].join("\n") end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 48 def self.example_code [ 'lane_context[SharedValues::BUILD_NUMBER]', 'lane_context[SharedValues::IPA_OUTPUT_PATH]' ] end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 39 def self.is_supported?(platform) true end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 27 def self.output [] end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 31 def self.return_type :hash end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 4 def self.run(params) Actions.lane_context end
Source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 44 def self.step_text nil end
We don’t want to show this as step