forked from willdale/SwiftUICharts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftUICharts.podspec
More file actions
16 lines (16 loc) · 839 Bytes
/
SwiftUICharts.podspec
File metadata and controls
16 lines (16 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'SwiftUICharts'
s.version = '2.9.6'
s.summary = 'A charts / plotting library for SwiftUI.'
s.description = 'A charts / plotting library for SwiftUI. Works on macOS, iOS, watchOS, and tvOS and has accessibility features built in.'
s.homepage = 'https://github.com/willdale/SwiftUICharts'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'willdale' => 'www.linkedin.com/in/willdale-dev' }
s.source = { :git => 'https://github.com/willdale/SwiftUICharts.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.macos.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'Sources/SwiftUICharts/**/*'
end