class Fastlane::FastFile

def override_lane(lane_name, &block)

User defines a lane that can overwrite existing lanes. Useful when importing a Fastfile
def override_lane(lane_name, &block)
  raise "You have to pass a block using 'do' for lane '#{lane_name}'. Make sure you read the docs on GitHub.".red unless block
  self.runner.add_lane(Lane.new(platform: self.current_platform,
                                   block: block,
                             description: desc_collection,
                                    name: lane_name,
                              is_private: false), true)
  @desc_collection = nil # reset the collected description again for the next lane
end