mirror of
https://github.com/selfxyz/self.git
synced 2026-02-08 13:25:59 -05:00
24 lines
518 B
Ruby
24 lines
518 B
Ruby
use_frameworks!
|
|
|
|
platform :ios, '13.0'
|
|
|
|
target 'MoproKit_Example' do
|
|
pod 'MoproKit', :path => '../'
|
|
|
|
target 'MoproKit_Tests' do
|
|
inherit! :search_paths
|
|
|
|
pod 'Quick', '~> 2.2.0'
|
|
pod 'Nimble', '~> 10.0.0'
|
|
end
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.generated_projects.each do |project|
|
|
project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
|
|
end
|
|
end
|
|
end
|
|
end |