class Fastlane::Actions::LaneContextAction

Public Class Methods

authors() click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 35
def self.authors
  ["KrauseFx"]
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 23
def self.available_options
  []
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 55
def self.category
  :misc
end
description() click to toggle source

@!group Documentation

# File fastlane/lib/fastlane/actions/lane_context.rb, line 12
def self.description
  "Access lane context values"
end
details() click to toggle 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
example_code() click to toggle 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
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 39
def self.is_supported?(platform)
  true
end
output() click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 27
def self.output
  []
end
return_type() click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 31
def self.return_type
  :hash
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/lane_context.rb, line 4
def self.run(params)
  Actions.lane_context
end
step_text() click to toggle source

We don't want to show this as step

# File fastlane/lib/fastlane/actions/lane_context.rb, line 44
def self.step_text
  nil
end