Charts.podspec 726 B

12345678910111213141516171819
  1. Pod::Spec.new do |s|
  2. s.name = "Charts"
  3. s.version = "4.0.0"
  4. s.summary = "Charts is a powerful & easy to use chart library for iOS, tvOS and OSX (and Android)"
  5. s.homepage = "https://github.com/danielgindi/Charts"
  6. s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
  7. s.authors = "Daniel Cohen Gindi", "Philipp Jahoda"
  8. s.ios.deployment_target = "9.0"
  9. s.tvos.deployment_target = "9.0"
  10. s.osx.deployment_target = "10.11"
  11. s.source = { :git => "https://github.com/danielgindi/Charts.git", :tag => "v#{s.version}" }
  12. s.default_subspec = "Core"
  13. s.swift_version = '5.3'
  14. s.cocoapods_version = '>= 1.5.0'
  15. s.subspec "Core" do |ss|
  16. ss.source_files = "Source/Charts/**/*.swift"
  17. end
  18. end