class Fastlane::Actions::MoronepoUpdateFlutterSdkAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/moronepo/actions/moronepo_update_flutter_sdk_action.rb, line 22 def self.available_options [Helper::OptionsHelper.working_directory] end
category()
click to toggle source
# File lib/fastlane/plugin/moronepo/actions/moronepo_update_flutter_sdk_action.rb, line 30 def self.category :building end
description()
click to toggle source
# File lib/fastlane/plugin/moronepo/actions/moronepo_update_flutter_sdk_action.rb, line 14 def self.description "Runs command for all subprojects or a specified project" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/moronepo/actions/moronepo_update_flutter_sdk_action.rb, line 26 def self.is_supported?(platform) true end
run(params)
click to toggle source
# File lib/fastlane/plugin/moronepo/actions/moronepo_update_flutter_sdk_action.rb, line 8 def self.run(params) configuration = MoronepoConfiguration.new(params.values) configuration.command = "update-flutter-sdk" Helper::MoronepoHelper.run_moronepo(configuration) end