class Fastlane::Actions::GsMoveRcToBetaReviewAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 35 def self.available_options require "pilot" require "pilot/options" FastlaneCore::CommanderGenerator.new.generate(Pilot::Options.available_options) end
convert_options(options)
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 6 def self.convert_options(options) o = options.__hash__.dup o.delete(:verbose) o end
description()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 18 def self.description "Gradoservice plugin to rule apps releases" end
details()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 30 def self.details # Optional: "Gradoservice plugin to rule apps releases for our scheme" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 41 def self.is_supported?(platform) # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example) # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md # # [:ios, :mac, :android].include?(platform) true end
return_value()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 26 def self.return_value # If your method provides a return value, you can describe here what it does end
run(params)
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb, line 11 def self.run(params) manager = Pilot::BuildManager.new manager.start(params) params[:distribute_external] = true manager.distribute(params) end