Class: Fastlane::Actions::IosGetStoreAppSizesAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::IosGetStoreAppSizesAction
- Defined in:
- lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb
Constant Summary collapse
- Helper =
Fastlane::Helper::Ios::ADCAppSizesHelper
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .output ⇒ Object
- .return_type ⇒ Object
- .return_value ⇒ Object
Class Method Summary collapse
Class Method Details
.authors ⇒ Object
113 114 115 116 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 113 def self. # So no one will ever forget your contribution to fastlane :) You are awesome btw! ['Automattic'] end |
.available_options ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 47 def self. [ FastlaneCore::ConfigItem.new( key: :adc_user, env_name: 'FL_IOS_STOREAPPSIZES_USER', description: 'The ADC user to use to log into ADC', type: String ), FastlaneCore::ConfigItem.new( key: :adc_team, env_name: 'FL_IOS_STOREAPPSIZES_TEAM', description: 'The ADC team name to use to log into ADC', type: String, optional: true, default_value: 'Automattic, Inc.' ), FastlaneCore::ConfigItem.new( key: :bundle_id, env_name: 'FL_IOS_STOREAPPSIZES_BUNDLEID', description: 'The bundleID of the app to retrieve sizes from', type: String ), FastlaneCore::ConfigItem.new( key: :version, env_name: 'FL_IOS_STOREAPPSIZES_VERSION', description: 'The version to retrive the data for. Keep nil to retrieve data for all the last {limit} versions', type: String, optional: true ), FastlaneCore::ConfigItem.new( key: :limit, env_name: 'FL_IOS_STOREAPPSIZES_LIMIT', description: 'The maximum number of past versions to retrieve information from', type: Integer, optional: true, default_value: 10 ), FastlaneCore::ConfigItem.new( key: :devices, env_name: 'FL_IOS_STOREAPPSIZES_DEVICES', description: 'The list of devices to print the app size for. If nil, will print data for all device types returned by ADC', type: Array, optional: true ), FastlaneCore::ConfigItem.new( key: :format, env_name: 'FL_IOS_STOREAPPSIZES_FORMAT', description: "The output format used to print the result. Can be one of 'csv' or 'markdown', or nil to print nothing (raw data will always be available as the the action's return value)", type: String, optional: true ), ] end |
.description ⇒ Object
39 40 41 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 39 def self.description 'Gets the size of the app as reported in Apple Developer Portal for recent versions' end |
.details ⇒ Object
43 44 45 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 43 def self.details 'Gets the download + installed size of the app from the Apple Developer Portail for various app versions release to AppStore and various device types' end |
.is_supported?(platform) ⇒ Boolean
118 119 120 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 118 def self.is_supported?(platform) %i[ios mac].include?(platform) end |
.output ⇒ Object
101 102 103 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 101 def self.output # Define the shared values you are going to provide end |
.return_type ⇒ Object
105 106 107 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 105 def self.return_type :hash end |
.return_value ⇒ Object
109 110 111 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 109 def self.return_value 'Return a Hash containing the details of download and install app size, for various device models, all that for each requested version of the app' end |
.run(params) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_get_store_app_sizes.rb', line 10 def self.run(params) app_sizes = Helper.get_adc_sizes( adc_user: params[:adc_user], adc_team: params[:adc_team], bundle_id: params[:bundle_id], only_version: params[:version], limit: params[:limit] ) devices = params[:devices] case params[:format] when 'csv' csv = Helper.format_csv(app_sizes, devices: devices) UI. "Result (CSV)\n\n#{csv}\n" when 'markdown' tables = Helper.format_markdown(app_sizes, devices: devices) tables.each do |table| UI. "Result (Markdown)\n\n#{table}\n" end end app_sizes end |