-
Notifications
You must be signed in to change notification settings - Fork 121
/
KVKCalendar.podspec
22 lines (20 loc) · 1.09 KB
/
KVKCalendar.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'KVKCalendar'
s.version = '0.6.29'
s.summary = 'A most fully customization calendar for Apple platforms.'
s.description = <<-DESC
KVKCalendar is a most fully customization calendar.
Library consists of five modules for displaying various types of calendar (day, week, month, year, list).
You can choose any module or use all. It is designed based on a standard iOS calendar, but with additional features.
Timeline displays the schedule for the day and the week.
DESC
s.homepage = 'https://github.com/kvyatkovskys/KVKCalendar'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Sergei Kviatkovskii' => '[email protected]' }
s.source = { :git => 'https://github.com/kvyatkovskys/KVKCalendar.git', :tag => s.version.to_s }
s.social_media_url = 'https://github.com/kvyatkovskys'
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/**/*.swift'
s.frameworks = 'UIKit', 'EventKit'
s.swift_version = '5.0'
end