Summary: Release 0.6.15 Reviewed By: danielbuechele Differential Revision: D9117554 fbshipit-source-id: 1096705c8d9b25c36df4b824d70c0c49fd6c50af
24 lines
694 B
Ruby
24 lines
694 B
Ruby
project 'Sample.xcodeproj'
|
|
source 'https://github.com/facebook/Sonar.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
swift_version = "4.1"
|
|
sonarkit_version = '0.6.15'
|
|
|
|
target 'Sample' do
|
|
pod 'SonarKit', '~>'+sonarkit_version
|
|
pod 'SonarKit/SonarKitLayoutComponentKitSupport', '~>'+sonarkit_version
|
|
pod 'SonarKit/SKIOSNetworkPlugin', '~>'+sonarkit_version
|
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
if ['YogaKit'].include? target.name
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['SWIFT_VERSION'] = swift_version
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|