-
Notifications
You must be signed in to change notification settings - Fork 12
Defining Your Own Lanes
Neil Horton edited this page Mar 23, 2016
·
2 revisions
Defining your own lane is super easy. Just head to your fastfile and add the following
#!ruby
lane :YOUR_LANE_NAME do
end
You can now populate your lane with any actions you wish. To see a full list of actions that come baked into fastlane use
$ fastlane actions
To see information on a single action such as input parameters and return values enter the following into the command line
$ fastlane action 'ACTION_NAME'
The lanes defined in the TABMasterFastfile are fairly customizable but if you have the need it is easy to override their implementation
#!ruby
override_lane :hockey do
end