From 6a541c2529dbe167133cf7cf2a154432c1a0f0f4 Mon Sep 17 00:00:00 2001 From: Gordon Fontenot Date: Mon, 12 Jan 2015 19:23:08 -0500 Subject: [PATCH] Add note to README about adding Runes If users want to use functional operators, they will need to link Runes into their project as well. Additionally, we should link directly to Carthage's installation instructions, since they are currently in flux. --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb61dd8..b09a7e6 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,18 @@ Add the following to your Cartfile: github "thoughtbot/Argo" ``` -Then run `carthage update`. Drag `Argo.framework` into your project, and -you're good to go. +Then run `carthage update`. + +Follow the current instructions in [Carthage's README][carthage-installation] +for up to date installation instructions. + +[carthage-installation]: https://github.com/Carthage/Carthage#adding-frameworks-to-an-application + +If you want to use the functional operators (`<^>`, `<*>`, `>>-`) in your app, +you'll also need to add `Runes.framework` to your project. [Runes] is a +dependency of Argo, so you don't need to specify it in your Cartfile. + +[Runes]: https://github.com/thoughtbot/runes ### [CocoaPods]