From 6ba22adfcbb2a360d4cae0450d6ac618d92d954e Mon Sep 17 00:00:00 2001 From: Dmitriy Kalachniuk Date: Mon, 13 Feb 2017 15:31:47 +0100 Subject: [PATCH 1/3] readme updated --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 7f38af5..31ee16c 100644 --- a/README.md +++ b/README.md @@ -181,3 +181,24 @@ We still have the same model as we had before, but now when we will try to const ``` So now we can immediately see what exactly went wrong and what field in json was corrupt. This feature is really powerful to debug the json that has a nested structure, especially when your back-end changes fast and you need to reflect to the changes as quick as possible 😉 + +#Integration + +##CocoaPods (iOS 8+, OS X 10.9+) + +You can use CocoaPods to install SwiftyJSONModel by adding it to your Podfile: + +platform :ios, '8.0' +use_frameworks! + +target 'MyApp' do +pod 'SwiftyJSONModel' +end +Note that this requires CocoaPods version 36, and your iOS deployment target to be at least 8.0: + +##Carthage (iOS 8+, OS X 10.9+) + +You can use Carthage to install SwiftyJSONModel by adding it to your Cartfile: + +github "alickbass/SwiftyJSONModel" + From 50656d3add2cf15ce3f98bbc37eb34c82cc9b329 Mon Sep 17 00:00:00 2001 From: DKalachniuk Date: Mon, 13 Feb 2017 15:33:32 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 31ee16c..1fe709b 100644 --- a/README.md +++ b/README.md @@ -188,17 +188,22 @@ So now we can immediately see what exactly went wrong and what field in json was You can use CocoaPods to install SwiftyJSONModel by adding it to your Podfile: +```swift platform :ios, '8.0' use_frameworks! target 'MyApp' do pod 'SwiftyJSONModel' end +``` + Note that this requires CocoaPods version 36, and your iOS deployment target to be at least 8.0: ##Carthage (iOS 8+, OS X 10.9+) You can use Carthage to install SwiftyJSONModel by adding it to your Cartfile: +```swift github "alickbass/SwiftyJSONModel" +``` From 63af9109a492a526639b972b82d483e820f854cf Mon Sep 17 00:00:00 2001 From: DKalachniuk Date: Mon, 13 Feb 2017 15:51:39 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fe709b..72492fc 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ So now we can immediately see what exactly went wrong and what field in json was #Integration -##CocoaPods (iOS 8+, OS X 10.9+) +##CocoaPods (iOS 8+) You can use CocoaPods to install SwiftyJSONModel by adding it to your Podfile: @@ -199,7 +199,7 @@ end Note that this requires CocoaPods version 36, and your iOS deployment target to be at least 8.0: -##Carthage (iOS 8+, OS X 10.9+) +##Carthage (iOS 8+) You can use Carthage to install SwiftyJSONModel by adding it to your Cartfile: