21 lines
557 B
Ruby
21 lines
557 B
Ruby
use_frameworks!
|
|
|
|
example_project_path = 'Example/SDWebImageWebPCoderExample'
|
|
test_project_path = 'Tests/SDWebImageWebPCoderTests'
|
|
workspace 'SDWebImageWebPCoder.xcworkspace'
|
|
|
|
target 'SDWebImageWebPCoderExample' do
|
|
platform :ios, '9.0'
|
|
project example_project_path
|
|
pod 'SDWebImageWebPCoder', :path => './'
|
|
pod 'SDWebImage', :path => '../SDWebImage'
|
|
end
|
|
|
|
target 'SDWebImageWebPCoderTests' do
|
|
platform :ios, '9.0'
|
|
project test_project_path
|
|
pod 'Expecta'
|
|
pod 'SDWebImageWebPCoder', :path => './'
|
|
pod 'SDWebImage', :path => '../SDWebImage'
|
|
end
|