forked from kiliankoe/iCalKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiCalKit.podspec
More file actions
22 lines (19 loc) · 838 Bytes
/
iCalKit.podspec
File metadata and controls
22 lines (19 loc) · 838 Bytes
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 = "iCalKit"
s.version = "0.1.0"
s.summary = "Parse and generate iCalendar (.ics) files in Swift"
s.description = <<-DESC
A library to help with parsing and generating iCalender (.ics) files with a pretty API.
DESC
s.homepage = "https://github.com/kiliankoe/iCalKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.social_media_url = "https://twitter.com/kiliankoe"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/kiliankoe/iCalKit.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
end