1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-11 13:15:35 +03:00
Macaw/Example/Podfile
2016-11-24 17:57:39 +07:00

14 lines
262 B
Ruby

use_frameworks!
target 'Example' do
pod 'Macaw', :path => '../'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0.1'
end
end
end