Created
March 1, 2019 17:45
-
-
Save jaleksynas/883484bc20298117458569a2d589dec0 to your computer and use it in GitHub Desktop.
First step in Plugin developement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# => 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