fastlane/lib/fastlane/actions/testfairy.rb in fastlane-2.136.0 vs fastlane/lib/fastlane/actions/testfairy.rb in fastlane-2.137.0

- old
+ new

@@ -90,10 +90,12 @@ ['auto-update', value] when :notify [key, value] when :options [key, options_to_client.call(value).join(',')] + when :custom + [key, value] else UI.user_error!("Unknown parameter: #{key}") end end] @@ -221,10 +223,15 @@ optional: true, type: Array, env_name: "FL_TESTFAIRY_OPTIONS", description: "Array of options (shake,video_only_wifi,anonymous)", default_value: []), + FastlaneCore::ConfigItem.new(key: :custom, + optional: true, + env_name: "FL_TESTFAIRY_CUSTOM", + description: "Array of custom options. Contact support@testfairy.com for more information", + default_value: ''), FastlaneCore::ConfigItem.new(key: :timeout, env_name: "FL_TESTFAIRY_TIMEOUT", description: "Request timeout in seconds", type: Integer, optional: true) @@ -250,10 +257,10 @@ ['TESTFAIRY_BUILD_URL', 'URL of the newly uploaded build'] ] end def self.authors - ["taka0125", "tcurdt"] + ["taka0125", "tcurdt", "vijaysharm"] end def self.is_supported?(platform) [:ios, :android].include?(platform) end