@@ -97,35 +97,35 @@ def self.available_options
97
97
FastlaneCore ::ConfigItem . new (
98
98
key : :app_name ,
99
99
env_name : 'FL_IOS_SEND_APP_SIZE_METRICS_APP_NAME' ,
100
- description : 'The name of the app for which we are publishing metrics, to help filter by app in the dashboard ' ,
100
+ description : 'The name of the app for which we are publishing metrics, to help with filtering and grouping ' ,
101
101
type : String ,
102
102
optional : false
103
103
) ,
104
104
FastlaneCore ::ConfigItem . new (
105
105
key : :app_version ,
106
106
env_name : 'FL_IOS_SEND_APP_SIZE_METRICS_APP_VERSION' ,
107
- description : 'The version of the app for which we are publishing metrics, to help filter by version in the dashboard ' ,
107
+ description : 'The version of the app for which we are publishing metrics, to help with filtering and grouping ' ,
108
108
type : String ,
109
109
optional : false
110
110
) ,
111
111
FastlaneCore ::ConfigItem . new (
112
112
key : :build_type ,
113
113
env_name : 'FL_IOS_SEND_APP_SIZE_METRICS_BUILD_TYPE' ,
114
- description : 'The build configuration for which we are publishing metrics, to help filter by build config in the dashboard . E.g. `Debug`, `Release`' ,
114
+ description : 'The build configuration for which we are publishing metrics, to help with filtering and grouping . E.g. `Debug`, `Release`' ,
115
115
type : String ,
116
116
optional : true
117
117
) ,
118
118
FastlaneCore ::ConfigItem . new (
119
119
key : :source ,
120
120
env_name : 'FL_IOS_SEND_APP_SIZE_METRICS_SOURCE' ,
121
- description : 'The type of event at the origin of that build, to help filter data in the dashboard . E.g. `pr`, `beta`, `final-release`' ,
121
+ description : 'The type of event at the origin of that build, to help with filtering and grouping . E.g. `pr`, `beta`, `final-release`' ,
122
122
type : String ,
123
123
optional : true
124
124
) ,
125
125
FastlaneCore ::ConfigItem . new (
126
126
key : :ipa_path ,
127
127
env_name : 'FL_IOS_SEND_APP_SIZE_METRICS_IPA_PATH' ,
128
- description : 'The path to the .ipa to extract size information from' ,
128
+ description : 'The path to the ` .ipa` to extract size information from' ,
129
129
type : String ,
130
130
optional : false ,
131
131
default_value : Actions . lane_context [ SharedValues ::IPA_OUTPUT_PATH ] ,
@@ -158,7 +158,7 @@ def self.authors
158
158
end
159
159
160
160
def self . is_supported? ( platform )
161
- [ :ios , :mac ] . include? platform
161
+ platform == :ios
162
162
end
163
163
end
164
164
end
0 commit comments