Skip to content

Instantly share code, notes, and snippets.

@tianhaoz95
Created March 9, 2020 02:33
Show Gist options
  • Save tianhaoz95/b83cffa1e6bb48493d730769a0fab6d5 to your computer and use it in GitHub Desktop.
Save tianhaoz95/b83cffa1e6bb48493d730769a0fab6d5 to your computer and use it in GitHub Desktop.
example of retrieving the version code from metadata
version = pubspec["version"]
if not version.include? "+"
raise "Verson code indicator (+) not foud in pubspec.yml"
end
version_sections = version.split("+")
version_name = version_sections[0]
version_code = version_sections[1]
return version_code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment