From 15c5a9f59708625e27d3004781532173b4724477 Mon Sep 17 00:00:00 2001 From: Ricardo Pereira Date: Tue, 14 May 2019 20:30:40 +0100 Subject: [PATCH] Update README --- README.md | 8 ++++---- fastlane/README.md | 16 +++++++++++++--- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index fb7bf0f..c07a827 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/Carthage/Carthage) [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/QuickActions.svg)](https://cocoapods.org/pods/QuickActions) -[![Swift 3.0](https://img.shields.io/badge/Swift-3.0-orange.svg?style=flat)](https://developer.apple.com/swift/) +[![Swift 4.2](https://img.shields.io/badge/Swift-4.2-orange.svg?style=flat)](https://developer.apple.com/swift/) [![Platforms iOS](https://img.shields.io/badge/Platforms-iOS-lightgray.svg?style=flat)](http://www.apple.com/ios/) [![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) @@ -31,7 +31,7 @@ Install a list of shortcuts: ```swift var quickActions: QuickActions? -func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]? = nil) -> Bool { +func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool { let shortcuts = [Shortcut(type: AppShortcut.CreateExpense, title: NSLocalizedString("CreateExpenseTitle", comment: ""), subtitle: NSLocalizedString("CreateExpenseSubTitle", comment: ""), icon: .Add)] if let actionHandler = window?.rootViewController as? QuickActionSupport, bundleIdentifier = NSBundle.mainBundle().bundleIdentifier { @@ -133,8 +133,8 @@ Then run `pod install` with CocoaPods 1.1.0 or newer. ## Requirements -* iOS 9.0+ -* Xcode 8 (Swift 3.0) +* iOS 8.1+ +* Xcode 10 (Swift 4.2) ## Author diff --git a/fastlane/README.md b/fastlane/README.md index 742927c..78312af 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -1,9 +1,19 @@ fastlane documentation ================ # Installation + +Make sure you have the latest version of the Xcode command line tools installed: + +``` +xcode-select --install ``` -sudo gem install fastlane + +Install _fastlane_ using +``` +[sudo] gem install fastlane -NV ``` +or alternatively using `brew cask install fastlane` + # Available Actions ## iOS ### ios test @@ -25,5 +35,5 @@ Prepare a new Release version ---- This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. -More information about fastlane can be found on [https://fastlane.tools](https://fastlane.tools). -The documentation of fastlane can be found on [GitHub](https://github.com/fastlane/fastlane/tree/master/fastlane). +More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). +The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).