@modocache Now that Xcode 8 / Swift 3 is out, it would be fantastic to have an official Quick version on cocoapods that support swift 3, so we can stop relying on the swift3
branch directly.
Hey @ldiqual, I think a new release for Swift 3 is coming soon, see: https://github.com/Quick/Quick/pull/601#issuecomment-248664253
@pedrovereza when we can expect new release ?
why on earth was the swift3 branch removed??
@tcurdt @tw-safad Swift 3 branch has been merged into master and is pending for released!
will it be released soon?
I hope so :)
Aaaaand it's out
@pedrovereza We updated with the new versions . Still not able to import Quick and Nimble modules in swift test targets.
@tw-safad are you using cocoapods? If so, add this to to your Podfile
:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
end
end
end
@damianesteban i added that to the end of Podfile
, still getting No such module
Quick``
def testing_pods
pod 'Quick', '~> 0.10'
pod 'Nimble'
end
@damianesteban No luck . Still facing same issue . Not able to import Quick/Nimble module.
@tw-safad version of CocoaPods you use? I think for Xcode 8 / Swift 3, CocoaPods 1.1.0 is strongly recommended (if not required).
@dusek Thanks a lot . Its working now .
Closing since 3.0 support has been released.
Most helpful comment
@tcurdt @tw-safad Swift 3 branch has been merged into master and is pending for released!