class Fastlane::Actions::FinalizeVersionAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 15
def self.authors
  ["ericmartineau"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 28
def self.available_options
   [
    FastlaneCore::ConfigItem.new(key: :tag_group,
                                 env_name: "SUNNY_PROJECT_TAG_GROUP",
                                 description: "The name of the tag group",
                                 optional: false,
                                 type: String,
                                 default_value: "sunny/builds"),
               ]

end
description() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 11
def self.description
  "Commit version tags"
end
details() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 23
def self.details
  # Optional:
  ""
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 40
def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
  #
  # [:ios, :mac, :android].include?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 19
def self.return_value
  # If your method provides a return value, you can describe here what it does
end
run(options) click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/finalize_version_action.rb, line 7
def self.run(options)
  Sunny.finalize_version(options)
end