@@ -901,6 +901,30 @@ You can read more about Git submodules
901901of Git submodules in action, check out any of the repositories linked to
902902in 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
906930The Quick repository includes file templates for both Swift and
0 commit comments