/WhitecodingIOSLibrary.podspec

https://bitbucket.org/whitecoding/wil · Unknown · 32 lines · 25 code · 7 blank · 0 comment · 0 complexity · a108896ddadd63b9b0fc6e82865b901b MD5 · raw file

  1. Pod::Spec.new do |s|
  2. s.name = 'WhitecodingIOSLibrary'
  3. s.version = '5.0.0'
  4. s.summary = 'A short description of WhitecodingIOSLibrary.'
  5. s.description = 'An optional longer description of WhitecodingIOSLibrary.'
  6. s.homepage = 'https://bitbucket.org/whitecoding/wil'
  7. s.license = 'MIT'
  8. s.author = { 'Philipp Lomosits' => 'p.lomosits@gmail.com' }
  9. s.source = { :git => 'https://bitbucket.org/whitecoding/wil.git', :branch => 'master' }
  10. # s.source = { :git => 'https://bitbucket.org/whitecoding/wil.git', :tag => '1.0.0' }
  11. # s.source = { :git => 'https://bitbucket.org/whitecoding/wil.git', :commit => '070fa7fa1e5c' }
  12. s.subspec 'Map' do |ms|
  13. ms.ios.source_files = 'Code/Map/**/*.{h,m}'
  14. ms.frameworks = 'MapKit', 'CoreLocation'
  15. end
  16. s.subspec 'Logger' do |ls|
  17. ls.ios.source_files = 'Code/Logger/**/*.{h,m}'
  18. end
  19. s.subspec 'Objects' do |os|
  20. os.ios.source_files = 'Code/Objects/**/*.{h,m}'
  21. end
  22. s.subspec 'UI' do |us|
  23. us.ios.source_files = 'Code/UI/**/*.{h,m}'
  24. end
  25. end