SwiftCharts.podspec 647 B

123456789101112131415
  1. Pod::Spec.new do |s|
  2. s.name = "SwiftCharts"
  3. s.version = "0.6.5"
  4. s.summary = "Easy to use and highly customizable charts library for iOS"
  5. s.homepage = "https://github.com/i-schuetz/SwiftCharts"
  6. s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
  7. s.authors = { "Ivan Schuetz" => "ivanschuetz@gmail.com"}
  8. s.ios.deployment_target = "8.0"
  9. s.tvos.deployment_target = "9.0"
  10. s.source = { :git => "https://github.com/i-schuetz/SwiftCharts.git", :tag => '0.6.5'}
  11. s.source_files = 'SwiftCharts/*.swift', 'SwiftCharts/**/*.swift'
  12. s.frameworks = "Foundation", "UIKit", "CoreGraphics"
  13. s.swift_version = '5.0'
  14. end