Skip to content

Commit 3fd413d

Browse files
committed
add README changes
1 parent 6806b39 commit 3fd413d

2 files changed

Lines changed: 29 additions & 5 deletions

File tree

Quick.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Quick"
3-
s.version = "0.1.0-beta"
3+
s.version = "0.2.0"
44
s.summary = "The Swift (and Objective-C) testing framework."
55

66
s.description = <<-DESC
@@ -10,11 +10,11 @@ Pod::Spec.new do |s|
1010
s.homepage = "https://github.com/Quick/Quick"
1111
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
1212

13-
s.author = "Quick Contributors"
14-
s.ios.deployment_target = "7.0"
15-
s.osx.deployment_target = "10.7"
13+
s.author = "Quick Contributors"
14+
s.ios.deployment_target = "8.0"
15+
s.osx.deployment_target = "10.10"
1616

17-
s.source = { :git => "https://github.com/Quick/Quick.git", :tag => "v0.1.0-beta" }
17+
s.source = { :git => "https://github.com/Quick/Quick.git", :tag => "v0.2.0" }
1818
s.source_files = "Quick", "Quick/**/*.{swift,h,m}"
1919

2020
s.framework = "XCTest"

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,30 @@ You can read more about Git submodules
901901
of Git submodules in action, check out any of the repositories linked to
902902
in the ["Who Uses Quick"](#who-uses-quick) section of this guide.
903903

904+
## How to Install Quick using Beta CocoaPods
905+
906+
If you would like to use Quick with CocoaPods today, you will need to use
907+
rubygem's [Bundler](http://bundler.io) to use the swift branch of CocoaPods. This
908+
can be done by including a Gemfile that looks like this:
909+
910+
```ruby
911+
source 'https://rubygems.org'
912+
913+
gem 'cocoapods', :git => 'https://github.com/CocoaPods/CocoaPods.git', :branch => 'swift'
914+
gem 'cocoapods-core', :git => 'https://github.com/CocoaPods/Core.git', :branch => 'swift'
915+
gem 'xcodeproj', :git => "https://github.com/CocoaPods/Xcodeproj.git", :branch => 'ext_build_settings'
916+
```
917+
918+
Then run `bundle install` to start using Swift CocoaPods for just this project.
919+
Then in your Podfile, add the following to your test target.
920+
921+
```
922+
pod 'Quick', :git => "https://github.com/Quick/Quick", :head
923+
```
924+
925+
Finally, run `bundle exec pod install`. The `bundle exec` ensures you're using
926+
the Swift CocoaPods version from your Gemfile.
927+
904928
## How to Install Quick File Templates
905929

906930
The Quick repository includes file templates for both Swift and

0 commit comments

Comments
 (0)