Files
PerspectiveTransform/Example/Podfile
2018-10-08 11:25:06 -07:00

34 lines
803 B
Ruby

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '11.0'
target 'Example' do
inhibit_all_warnings! # mute warnings from pod dependencies
pod 'PerspectiveTransform', :path => '../'
pod 'ImageCoordinateSpace'
def SwiftTestingPods
pod 'Quick'
pod 'Nimble'
end
target 'Framework Unit Specs' do
inherit! :search_paths
SwiftTestingPods()
end
target 'Application Specs' do
inherit! :search_paths
SwiftTestingPods()
# use Nimble-Snapshots fork that has Swift 4.2 support
pod 'Nimble-Snapshots',
:git => 'https://github.com/DRybochkin/Nimble-Snapshots.git'
end
target 'OpenCV OSX Tests' do
platform :osx, '10.13'
SwiftTestingPods()
end
end