diff --git a/Documentation/InstallingQuick.md b/Documentation/InstallingQuick.md index 642ea50f1..34e8e089a 100644 --- a/Documentation/InstallingQuick.md +++ b/Documentation/InstallingQuick.md @@ -101,14 +101,13 @@ Then, add Quick and Nimble to your Podfile. Additionally, the ```use_frameworks! use_frameworks! def testing_pods - # If you're using Xcode 7 / Swift 2 pod 'Quick', '0.5.0' pod 'Nimble', '2.0.0-rc.1' - + # If you're using Xcode 6 / Swift 1.2 pod 'Quick', '0.3.0' - pod 'Nimble', '1.0.0-rc.1' + pod 'Nimble', '1.0.0' end target 'MyTests' do @@ -118,7 +117,6 @@ end target 'MyUITests' do testing_pods end - ``` Finally, download and link Quick and Nimble to your tests: diff --git a/README.md b/README.md index 4ef6e18f6..3c582b11f 100644 --- a/README.md +++ b/README.md @@ -43,14 +43,13 @@ All documentation can be found in the [Documentation folder](./Documentation), i use_frameworks! def testing_pods - # If you're using Xcode 7 / Swift 2 pod 'Quick', '0.5.0' pod 'Nimble', '2.0.0-rc.1' - + # If you're using Xcode 6 / Swift 1.2 pod 'Quick', '0.3.0' - pod 'Nimble', '1.0.0-rc.1' + pod 'Nimble', '1.0.0' end target 'MyTests' do @@ -60,7 +59,6 @@ end target 'MyUITests' do testing_pods end - ``` ## License