Skip to content

Instantly share code, notes, and snippets.

@jdee
Last active December 18, 2017 18:17
Show Gist options
  • Save jdee/70616a91e9a5d62754a7adcad5716f9b to your computer and use it in GitHub Desktop.
Save jdee/70616a91e9a5d62754a7adcad5716f9b to your computer and use it in GitHub Desktop.
settings API for Fastfile.swift
settings().minFastlaneVersion = "2.69.3"
settings().teamId = "ABCDEFG"
settings().myPlugin().pluginSetting = true
settings {
s in
s.minFastlaneVersion = "2.69.3"
s.teamId = "ABCDEFG"
s.myPlugin {
p in
p.pluginSetting = true
}
}
settings(
minFastlaneVersion: "2.69.3",
teamId: "ABCDEFG",
myPlugin: [
"pluginSetting": true
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment