module Fastlane::Actions

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/dart_package_status_action.rb, line 76
def self.authors
  ["ericmartineau"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/dart_package_status_action.rb, line 89
def self.available_options
  Fastlane::SunnyProject::Options.available_options
end
convert_options(options) click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/dart_package_status_action.rb, line 66
def self.convert_options(options)
  o = options.__hash__.dup
  o.delete(:verbose)
  o
end
description() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/dart_package_status_action.rb, line 72
def self.description
  "Get or retrieve release notes from git"
end
details() click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/dart_package_status_action.rb, line 84
def self.details
  # Optional:
  ""
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/sunny_project/actions/dart_package_status_action.rb, line 93
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/dart_package_status_action.rb, line 80
def self.return_value
  # If your method provides a return value, you can describe here what it does
end