class Fastlane::Actions::GsMoveToReadyForSale
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_to_ready_for_sale.rb, line 26 def self.available_options [ FastlaneCore::ConfigItem.new(key: :app_identifier, env_name: "GS_APP_IDENTIFIER", description: "A description of your option", optional: false, type: String) ] end
description()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_to_ready_for_sale.rb, line 9 def self.description "Gradoservice plugin to rule apps releases" end
details()
click to toggle source
# File lib/fastlane/plugin/gs_deliver/actions/gs_move_to_ready_for_sale.rb, line 21 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_to_ready_for_sale.rb, line 36 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_to_ready_for_sale.rb, line 17 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_to_ready_for_sale.rb, line 4 def self.run(params) app = Spaceship::Tunes::Application.find(params[:app_identifier]) app.release! end