-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathFLCharts.podspec
30 lines (24 loc) · 1.32 KB
/
FLCharts.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Be sure to run `pod lib lint FLCharts.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'FLCharts'
s.version = '1.9.0'
s.summary = 'Customizable iOS Charts built in Swift.'
s.description = <<-DESC
Easy to use and highly customizable charts for iOS. Use your own bar view.
DESC
s.homepage = 'https://github.com/francescoleoni98/FLCharts'
s.swift_versions = '5.0'
s.screenshots = 'https://raw.githubusercontent.com/francescoleoni98/FLCharts/main/Screenshots/base_chart.jpg', 'https://raw.githubusercontent.com/francescoleoni98/FLCharts/main/Screenshots/highlightedview_chart.jpg', 'https://raw.githubusercontent.com/francescoleoni98/FLCharts/main/Screenshots/multiple_value_chart.jpg'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Francesco Leoni' => 'leoni.francesco98@gmail.it' }
s.source = { :git => 'https://github.com/francescoleoni98/FLCharts.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/franceleonidev'
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/FLCharts/**/*.{swift}'
s.resources = 'Sources/FLCharts/Assets/*'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end