-
Notifications
You must be signed in to change notification settings - Fork 458
/
SpreadsheetView.podspec
31 lines (29 loc) · 1.91 KB
/
SpreadsheetView.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
31
Pod::Spec.new do |s|
s.name = 'SpreadsheetView'
s.version = '0.9.1'
s.summary = 'Full configurable spreadsheet view user interfaces for iOS applications.'
s.description = <<-DESC
Full configurable spreadsheet view user interfaces for iOS applications. With this framework,
you can easily create complex layouts like schedule, gantt chart or timetable as if you are using Excel.
Features
- Fixed column and row headers
- Merge cells
- Circular infinite scrolling automatically
- Customize grids and borders for each cell
- Customize inter cell spacing vertically and horizontally
- Fast scrolling, memory efficient
- `UICollectionView` like API
- Well unit tested
DESC
s.homepage = 'https://github.com/bannzai/SpreadsheetView'
s.screenshots = 'https://raw.githubusercontent.com/bannzai/SpreadsheetView/master/Resources/GanttChart.png', 'https://raw.githubusercontent.com/bannzai/SpreadsheetView/master/Resources/Timetable.png', 'https://raw.githubusercontent.com/bannzai/SpreadsheetView/master/Resources/DailySchedule_portrait.png'
s.ios.deployment_target = '9.0'
s.source_files = 'Framework/Sources/*.swift'
s.pod_target_xcconfig = { 'SWIFT_WHOLE_MODULE_OPTIMIZATION' => 'YES', 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.frameworks = 'UIKit'
s.source = { :git => 'https://github.com/bannzai/SpreadsheetView.git', :tag => "v#{s.version}" }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kishikawa Katsumi' => '[email protected]' }
s.social_media_url = 'https://twitter.com/k_katsumi'
s.swift_versions = '5.0'
end