Skip to content

Instantly share code, notes, and snippets.

@jaleksynas
Created March 1, 2019 17:45
Show Gist options
  • Save jaleksynas/883484bc20298117458569a2d589dec0 to your computer and use it in GitHub Desktop.
Save jaleksynas/883484bc20298117458569a2d589dec0 to your computer and use it in GitHub Desktop.
First step in Plugin developement
# => fastlane my_process
lane :my_process do
wave_from "My process"
end
# Plain old ruby function for all the complexity
def wave_from(phrase)
UI.message "👋 from #{phrase}"
UI.important "Yellow Things"
UI.error "Red Things"
# Open files, parse stuff, whatever wizardry is needed
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment