mirror of
https://github.com/fxm90/GradientLoadingBar.git
synced 2026-04-17 12:17:30 +00:00
29 lines
657 B
Ruby
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
|