fastlane/lib/fastlane/actions/lane_context.rb in fastlane-2.74.0.beta.20180107010004 vs fastlane/lib/fastlane/actions/lane_context.rb in fastlane-2.74.0.beta.20180108010004
- old
+ new
@@ -8,13 +8,20 @@
#####################################################
# @!group Documentation
#####################################################
def self.description
- "An alias to `Actions.lane_context`"
+ "Access lane context values"
end
+ def self.details
+ [
+ "Access the fastlane lane context values",
+ "More information about how the lane context works: https://docs.fastlane.tools/advanced/#lane-context"
+ ].join("\n")
+ end
+
def self.available_options
[]
end
def self.output
@@ -33,10 +40,13 @@
def self.step_text
nil
end
def self.example_code
- []
+ [
+ 'lane_context[SharedValues::BUILD_NUMBER]',
+ 'lane_context[SharedValues::IPA_OUTPUT_PATH]'
+ ]
end
def self.category
:misc
end