Files
GradientLoadingBar/Example/Podfile
T
2019-08-25 21:39:30 +02:00

29 lines
657 B
Ruby

platform :ios, '9.0'
use_frameworks!
target 'GradientLoadingBar_Example' do
pod 'GradientLoadingBar', :path => '../'
# Development pods
pod 'SwiftFormat/CLI'
pod 'SwiftLint'
# Fix issues with interface builder and cocoapods.
# Source: https://github.com/CocoaPods/CocoaPods/issues/7606#issuecomment-484294739
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
next unless config.name == 'Debug'
config.build_settings['LD_RUNPATH_SEARCH_PATHS'] = [
'$(FRAMEWORK_SEARCH_PATHS)'
]
end
end
target 'GradientLoadingBar_Tests' do
inherit! :search_paths
end
end