fastlane/lib/fastlane/actions/resign.rb in fastlane-2.96.0.beta.20180516050022 vs fastlane/lib/fastlane/actions/resign.rb in fastlane-2.96.0.beta.20180517050058
- old
+ new
@@ -65,14 +65,14 @@
verify_block: proc do |value|
UI.user_error!("Couldn't find ipa file at path '#{value}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :signing_identity,
env_name: "FL_RESIGN_SIGNING_IDENTITY",
- description: "Code signing identity to use. e.g. \"iPhone Distribution: Luka Mirosevic (0123456789)\""),
+ description: "Code signing identity to use. e.g. `iPhone Distribution: Luka Mirosevic (0123456789)`"),
FastlaneCore::ConfigItem.new(key: :entitlements,
env_name: "FL_RESIGN_ENTITLEMENTS",
- description: "Path to the entitlement file to use, e.g. \"myApp/MyApp.entitlements\"",
+ description: "Path to the entitlement file to use, e.g. `myApp/MyApp.entitlements`",
conflicting_options: [:use_app_entitlements],
is_string: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :provisioning_profile,
env_name: "FL_RESIGN_PROVISIONING_PROFILE",
@@ -90,44 +90,44 @@
UI.user_error!("Couldn't find provisiong profile at path '#{file}'") unless File.exist?(file)
end
end),
FastlaneCore::ConfigItem.new(key: :version,
env_name: "FL_RESIGN_VERSION",
- description: "Version number to force resigned ipa to use.\nUpdates both CFBundleShortVersionString and CFBundleVersion values in Info.plist.\nApplies for main app and all nested apps or extensions",
+ description: "Version number to force resigned ipa to use. Updates both `CFBundleShortVersionString` and `CFBundleVersion` values in `Info.plist`. Applies for main app and all nested apps or extensions",
conflicting_options: [:short_version, :bundle_version],
is_string: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :display_name,
env_name: "FL_DISPLAY_NAME",
description: "Display name to force resigned ipa to use",
is_string: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :short_version,
env_name: "FL_RESIGN_SHORT_VERSION",
- description: "Short version string to force resigned ipa to use (CFBundleShortVersionString)",
+ description: "Short version string to force resigned ipa to use (`CFBundleShortVersionString`)",
conflicting_options: [:version],
is_string: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :bundle_version,
env_name: "FL_RESIGN_BUNDLE_VERSION",
- description: "Bundle version to force resigned ipa to use (CFBundleVersion)",
+ description: "Bundle version to force resigned ipa to use (`CFBundleVersion`)",
conflicting_options: [:version],
is_string: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :bundle_id,
env_name: "FL_RESIGN_BUNDLE_ID",
- description: "Set new bundle ID during resign (CFBundleIdentifier)",
+ description: "Set new bundle ID during resign (`CFBundleIdentifier`)",
is_string: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :use_app_entitlements,
env_name: "FL_USE_APP_ENTITLEMENTS",
- description: "Extract app bundle codesigning entitlements\nand combine with entitlements from new provisionin profile",
+ description: "Extract app bundle codesigning entitlements and combine with entitlements from new provisionin profile",
conflicting_options: [:entitlements],
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :keychain_path,
env_name: "FL_RESIGN_KEYCHAIN_PATH",
- description: "Provide a path to a keychain file that should be used by /usr/bin/codesign",
+ description: "Provide a path to a keychain file that should be used by `/usr/bin/codesign`",
is_string: true,
optional: true)
]
end