produce/lib/produce/commands_generator.rb in fastlane-2.114.0.beta.20190116200018 vs produce/lib/produce/commands_generator.rb in fastlane-2.114.0
- old
+ new
@@ -43,10 +43,11 @@
command :enable_services do |c|
c.syntax = 'fastlane produce enable_services -a APP_IDENTIFIER SERVICE1, SERVICE2, ...'
c.description = 'Enable specific Application Services for a specific app on the Apple Developer Portal'
c.example('Enable HealthKit, HomeKit and Passbook', 'fastlane produce enable_services -a com.example.app --healthkit --homekit --passbook')
+ c.option('--access-wifi', 'Enable Access WiFi')
c.option('--app-group', 'Enable App Groups')
c.option('--apple-pay', 'Enable Apple Pay')
c.option('--auto-fill-credential', 'Enable AutoFill Credential')
c.option('--associated-domains', 'Enable Associated Domains')
c.option('--data-protection STRING', String, 'Enable Data Protection, suitable values are "complete", "unlessopen" and "untilfirstauth"')
@@ -83,9 +84,10 @@
command :disable_services do |c|
c.syntax = 'fastlane produce disable_services -a APP_IDENTIFIER SERVICE1, SERVICE2, ...'
c.description = 'Disable specific Application Services for a specific app on the Apple Developer Portal'
c.example('Disable HealthKit', 'fastlane produce disable_services -a com.example.app --healthkit')
+ c.option('--access-wifi', 'Disable Access WiFi')
c.option('--app-group', 'Disable App Groups')
c.option('--apple-pay', 'Disable Apple Pay')
c.option('--auto-fill-credential', 'Disable AutoFill Credential')
c.option('--associated-domains', 'Disable Associated Domains')
c.option('--data-protection', 'Disable Data Protection')